lama_byterun/lama-compiler/regression/test027.lama

9 lines
110 B
Text
Raw Normal View History

var x, y;
x := read ();
write (x);
y := read ();
write (y);
if x then x else y fi := 18;
write (x);
write (y)