mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-05 22:38:44 +00:00
32 lines
312 B
Text
32 lines
312 B
Text
local x, a, b, c;
|
|
|
|
fun print () {
|
|
write (a);
|
|
write (b);
|
|
write (c)
|
|
}
|
|
|
|
fun test1 (a) {
|
|
write (a);
|
|
print ();
|
|
write (a);
|
|
if a < 4 then
|
|
test2 (a+1);
|
|
print ()
|
|
fi
|
|
}
|
|
|
|
fun test2 (b) {
|
|
write (b);
|
|
print ();
|
|
test1 (b+1);
|
|
print ()
|
|
}
|
|
|
|
x := read ();
|
|
|
|
a := 100;
|
|
b := 200;
|
|
c := 300;
|
|
|
|
test1 (1)
|