lama_byterun/regression/test024.expr

15 lines
112 B
Text
Raw Normal View History

2018-03-27 01:51:22 +03:00
fun test1 () {
a := 3
}
fun test2 (b) {
a := b
}
2018-04-25 01:06:18 +03:00
x := read ();
2018-04-11 00:47:46 +03:00
2018-03-27 01:51:22 +03:00
test1 ();
write (a);
test2 (8);
write (a)