mirror of
https://github.com/irmen/prog8.git
synced 2024-11-25 04:31:20 +00:00
11 lines
117 B
Lua
11 lines
117 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
uword workFunc=$2000
|
|
|
|
void = call(workFunc)
|
|
}
|
|
}
|