lama_byterun/lama-compiler/regression/test057.lama

22 lines
No EOL
249 B
Text

fun a (p, q) {
var x = p, y = q, a = x + y, b = x - y;
(
var f = fun () {
write (x);
write (y);
write (a);
write (b)
};
a := 100;
b := 200;
x := 800;
y := 1000;
f
)
}
var x = read ();
a (5, 7) ()