prog8/examples/test.p8
2024-03-12 23:39:54 +01:00

16 lines
237 B
Lua

%import textio
%zeropage basicsafe
%option no_sysinit
main {
sub start() {
str name = "irmen"
ubyte @shared cc='m'
cx16.r0=9999
if cx16.r0<10000 and 'q' in name
txt.print("yes")
}
}