lama_byterun/lama-compiler/regression/test024.lama

7 lines
86 B
Text
Raw Normal View History

var x = read (), y = read ();
write (x);
write (y);
x := y := 5;
write (x);
write (y)