mirror of
https://github.com/irmen/prog8.git
synced 2024-11-02 22:04:40 +00:00
18 lines
155 B
Lua
18 lines
155 B
Lua
%import test_stack
|
|
%import textio
|
|
%import floats
|
|
%zeropage basicsafe
|
|
%option no_sysinit
|
|
|
|
main {
|
|
|
|
|
|
sub start () {
|
|
|
|
test_stack.test()
|
|
|
|
}
|
|
|
|
|
|
}
|