lama_byterun/regression/test024.lama

17 lines
No EOL
126 B
Text

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