Files
l2/tests/goto.sl
IgorCielniak 0acf5555a8 added goto
2026-01-09 11:10:18 +01:00

12 lines
145 B
Plaintext

import stdlib/stdlib.sl
import stdlib/io.sl
word main
3
label loop
dup puti cr
1 -
dup 0 >
if goto loop end
drop
end