lama_byterun/regression/test056.expr
2019-09-19 16:57:41 +03:00

8 lines
No EOL
130 B
Text

fun test (a, b, c) {
local x = a + b, y = b + c;
{local e = x + y;
return e
}
}
write (test (read (), read (), read ()))