lama_byterun/regression/test089.lama

8 lines
124 B
Text
Raw Normal View History

2020-01-05 03:33:17 +03:00
fun test (a, b, c) {
local x = a + b, y = b + c;
{local e = x + y;
e
}
}
write (test (read (), read (), read ()))