lama_byterun/regression/test048.expr

12 lines
161 B
Text
Raw Normal View History

global n, y;
fun test (n, m) {
local i, s;
2018-11-06 17:10:35 +03:00
write (n);
write (m);
return n
}
n := read ();
y := 1 + (2 + (3 + (4 + (5 + (6 + test (7, 7))))));
write (y)