mirror of
https://github.com/irmen/prog8.git
synced 2024-11-23 07:32:10 +00:00
21 lines
353 B
Lua
21 lines
353 B
Lua
%import textio
|
|
%option no_sysinit
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
ubyte @shared xx = 16
|
|
ubyte @shared yy = 20
|
|
|
|
txt.print_ub(xx>79 or yy > 49)
|
|
|
|
; if xx>79 or yy > 49 {
|
|
; if xx>79 or yy > 49 {
|
|
; txt.print("no\n")
|
|
; }
|
|
; else {
|
|
; txt.print("yes\n")
|
|
; }
|
|
}
|
|
}
|