prog8/examples/test.p8

13 lines
159 B
Lua

%import textio
%zeropage basicsafe
main {
sub start() {
str name = "irmen"
txt.print(name)
}
sub func(uword[22] thing) {
}
}