lama_byterun/regression/test048.expr
2019-09-19 18:37:08 +03:00

12 lines
No EOL
161 B
Text

global n, y;
fun test (n, m) {
local i, s;
write (n);
write (m);
return n
}
n := read ();
y := 1 + (2 + (3 + (4 + (5 + (6 + test (7, 7))))));
write (y)