lama_byterun/regression/test025.expr
2019-09-29 02:47:07 +03:00

33 lines
277 B
Text

local x, a, b, c;
fun test1 (a) {
write (a)
}
fun test2 (b) {
write (b)
}
fun test3 (c) {
write (c)
}
fun print () {
write (a);
write (b);
write (c)
}
x := read ();
a := 100;
b := 200;
c := 300;
test1 (1);
print ();
test2 (2);
print ();
test3 (3);
print ()