lama_byterun/regression/test024.expr

13 lines
97 B
Text
Raw Normal View History

2018-03-27 01:51:22 +03:00
fun test1 () {
a := 3
}
fun test2 (b) {
a := b
}
test1 ();
write (a);
test2 (8);
write (a)