mirror of
https://github.com/irmen/prog8.git
synced 2024-11-29 17:50:35 +00:00
16 lines
231 B
Lua
16 lines
231 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
|
|
|
|
main {
|
|
sub calc(ubyte x, ubyte y) -> uword {
|
|
repeat x+y {
|
|
x++
|
|
}
|
|
return x as uword * y
|
|
}
|
|
sub start() {
|
|
txt.print_uw(calc(22, 33))
|
|
}
|
|
}
|