lama_byterun/regression/test024.lama
Dmitry Boulytchev 61296c51e7 Massive renaming
2020-02-16 00:21:15 +03:00

17 lines
No EOL
128 B
Text

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