Files
kotlin/compiler/testData/repl/functionReferencesPrev.repl
2012-06-08 04:19:24 +04:00

7 lines
78 B
Plaintext

>>> val x = 1
null
>>> fun add1(y: Int) = x + y
null
>>> add1(999999)
1000000