lama_byterun/regression/test089.lama

8 lines
120 B
Text
Raw Normal View History

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