gigatron/rom/Contrib/at67/gbas/test/ifelse.gbas
2025-01-28 19:17:01 +03:00

19 lines
294 B
Plaintext

_runtimePath_ "../runtime"
_codeRomType_ ROMv1
cls
loop:
p=peek(15)
if p &&= 49
at 2,40 : print "one ";
elseif p &&= 50
at 2,40 : print "two ";
elseif p &&= 51
at 2,40 : print "three";
else
at 2,40 : print "none ";
endif
goto &loop