lama_byterun/regression/test056.lama

8 lines
130 B
Text
Raw Normal View History

2019-09-19 16:57:41 +03:00
fun test (a, b, c) {
local x = a + b, y = b + c;
{local e = x + y;
return e
}
}
write (test (read (), read (), read ()))