lama_byterun/lama-compiler/regression/test031.lama

15 lines
No EOL
121 B
Text

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