8 lines
62 B
Plaintext
8 lines
62 B
Plaintext
val x = 12
|
|
|
|
fun foo(y: Int) = x + y
|
|
|
|
foo(33)
|
|
|
|
// expected: 45
|