lama_byterun/regression/test025.expr
2018-04-25 01:06:18 +03:00

31 lines
258 B
Text

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 ()