mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
5 lines
68 B
Plaintext
Vendored
5 lines
68 B
Plaintext
Vendored
>>> val x = 1
|
|
>>> fun add1(y: Int) = x + y
|
|
>>> add1(999999)
|
|
1000000
|