mirror of
https://github.com/irmen/prog8.git
synced 2024-11-26 11:49:22 +00:00
19 lines
215 B
Plaintext
19 lines
215 B
Plaintext
|
|
||
|
~ main {
|
||
|
|
||
|
sub start() {
|
||
|
|
||
|
if A>10 {
|
||
|
A=44
|
||
|
while true {
|
||
|
;derp
|
||
|
}
|
||
|
} else {
|
||
|
|
||
|
gameover:
|
||
|
goto gameover
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|