mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-05 22:38:44 +00:00
16 lines
193 B
Text
16 lines
193 B
Text
local x = [0], y = [0];
|
|
|
|
read ();
|
|
|
|
write (x[0]);
|
|
write (y[0]);
|
|
|
|
if 1 then x[0] else y[0] fi := 10;
|
|
|
|
write (x[0]);
|
|
write (y[0]);
|
|
|
|
if 0 then x[0] else y[0] fi := 100;
|
|
|
|
write (x[0]);
|
|
write (y[0])
|