mirror of
https://github.com/irmen/prog8.git
synced 2024-11-22 15:33:02 +00:00
19 lines
268 B
Lua
19 lines
268 B
Lua
%import textio
|
|
%option no_sysinit
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
alias prn = txt.print_ub
|
|
alias spc = txt.spc
|
|
alias nl = txt.nl
|
|
|
|
prn(10)
|
|
spc()
|
|
prn(20)
|
|
spc()
|
|
prn(30)
|
|
nl()
|
|
}
|
|
}
|