lama_byterun/regression/test024.expr
2018-03-27 01:51:22 +03:00

13 lines
No EOL
97 B
Text

fun test1 () {
a := 3
}
fun test2 (b) {
a := b
}
test1 ();
write (a);
test2 (8);
write (a)