mirror of
https://github.com/irmen/prog8.git
synced 2025-01-12 04:30:03 +00:00
16 lines
139 B
Lua
16 lines
139 B
Lua
%import test_stack
|
|
%import textio
|
|
%zeropage basicsafe
|
|
%option no_sysinit
|
|
|
|
main {
|
|
|
|
|
|
sub start () {
|
|
|
|
test_stack.test()
|
|
|
|
}
|
|
|
|
}
|