prog8/examples/test.p8
2020-12-06 08:36:19 +01:00

11 lines
132 B
Lua

%import textio
%import floats
%zeropage basicsafe
%import test_stack
main {
sub start() {
txt.print("hello\n")
}
}