mirror of
https://github.com/irmen/prog8.git
synced 2024-11-03 13:07:54 +00:00
11 lines
138 B
Lua
11 lines
138 B
Lua
%import textio
|
|
%import test_stack
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
txt.print("ok")
|
|
test_stack.test()
|
|
}
|
|
}
|