mirror of
https://github.com/irmen/prog8.git
synced 2025-02-06 01:30:23 +00:00
21 lines
309 B
Lua
21 lines
309 B
Lua
|
|
; @todo fix this (issue #11 on github): it generates invalid asm due to improper label names
|
|
|
|
~ main {
|
|
|
|
sub start() {
|
|
|
|
if A>10 {
|
|
A=44
|
|
while true {
|
|
;derp
|
|
}
|
|
} else {
|
|
|
|
gameover:
|
|
goto gameover
|
|
}
|
|
}
|
|
|
|
}
|