prog8/examples/test.p8
2021-10-27 02:41:24 +02:00

25 lines
315 B
Lua

main {
sub start() {
goto labeloutside
if true {
if true {
goto labeloutside
goto iflabel
}
iflabel:
}
repeat {
goto labelinside
labelinside:
}
labeloutside:
}
start:
start:
start:
}