lama_byterun/regression/test024.expr
2018-04-25 01:06:18 +03:00

15 lines
No EOL
112 B
Text

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