2024-01-21 23:05:51 +01:00
|
|
|
%import textio
|
2024-01-23 00:56:06 +01:00
|
|
|
%option no_sysinit
|
2024-03-01 19:45:16 +01:00
|
|
|
%zeropage basicsafe
|
2023-12-31 01:02:33 +01:00
|
|
|
|
2024-01-07 18:48:18 +01:00
|
|
|
main {
|
2024-02-10 03:07:49 +01:00
|
|
|
sub start() {
|
2024-03-01 19:45:16 +01:00
|
|
|
ubyte @shared xx = 16
|
|
|
|
ubyte @shared yy = 20
|
2024-02-21 23:10:04 +01:00
|
|
|
|
2024-03-01 19:45:16 +01:00
|
|
|
txt.print_ub(xx>79 or yy > 49)
|
2024-02-21 23:10:04 +01:00
|
|
|
|
2024-03-01 19:45:16 +01:00
|
|
|
; if xx>79 or yy > 49 {
|
|
|
|
; if xx>79 or yy > 49 {
|
|
|
|
; txt.print("no\n")
|
2024-02-21 23:10:04 +01:00
|
|
|
; }
|
2024-03-01 19:45:16 +01:00
|
|
|
; else {
|
|
|
|
; txt.print("yes\n")
|
2024-02-21 23:10:04 +01:00
|
|
|
; }
|
2024-03-01 19:45:16 +01:00
|
|
|
}
|
|
|
|
}
|