mirror of
https://github.com/irmen/prog8.git
synced 2024-11-23 07:32:10 +00:00
17 lines
220 B
Lua
17 lines
220 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
ubyte @shared xx
|
|
ubyte @shared yy
|
|
|
|
yy = xx==7
|
|
if xx==99 {
|
|
xx++
|
|
yy++
|
|
}
|
|
txt.nl()
|
|
}
|
|
}
|