prog8/examples/test.p8
Irmen de Jong 4094f89d4a not a bug
2020-12-10 03:22:43 +01:00

14 lines
164 B
Lua

%import textio
%import diskio
%import floats
%zeropage basicsafe
%import test_stack
%option no_sysinit
main {
sub start() {
test_stack.test()
}
}