lama_byterun/regression/test024.expr
Dmitry Boulytchev b19bea4d58 Functions in X86
2018-04-11 00:47:46 +03:00

15 lines
No EOL
108 B
Text

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