5 lines
68 B
Plaintext
Vendored
5 lines
68 B
Plaintext
Vendored
>>> val x = 1
|
|
>>> fun add1(y: Int) = x + y
|
|
>>> add1(999999)
|
|
1000000
|