mirror of
https://github.com/irmen/prog8.git
synced 2024-11-23 07:32:10 +00:00
14 lines
234 B
Lua
14 lines
234 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
%option no_sysinit
|
|
|
|
main {
|
|
sub start() {
|
|
ubyte uw = 97
|
|
txt.print_ub( 10 * (uw/10) ) ; 90
|
|
txt.nl()
|
|
txt.print_ub( (uw/10) * 10 ) ; 90
|
|
txt.nl()
|
|
}
|
|
}
|