mirror of
https://github.com/irmen/prog8.git
synced 2024-11-28 10:51:14 +00:00
16 lines
278 B
Lua
16 lines
278 B
Lua
%import textio
|
|
%option no_sysinit
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
|
|
sub start() {
|
|
if cx16.r0L==0 {
|
|
uword[] scores = [10, 25, 50, 100] ; can never clear more than 4 lines at once
|
|
txt.print_uw(scores[1])
|
|
txt.nl()
|
|
}
|
|
}
|
|
|
|
}
|