mirror of
https://github.com/irmen/prog8.git
synced 2024-11-27 03:50:27 +00:00
16 lines
237 B
Lua
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")
|
|
}
|
|
}
|