mirror of
https://github.com/irmen/prog8.git
synced 2024-11-20 03:32:05 +00:00
18 lines
279 B
Lua
18 lines
279 B
Lua
%import test_stack
|
|
%import textio
|
|
%zeropage basicsafe
|
|
%option no_sysinit
|
|
|
|
main {
|
|
|
|
sub start () {
|
|
txt.lowercase()
|
|
txt.print_ub(txt.width())
|
|
txt.chrout('\n')
|
|
txt.print_ub(txt.height())
|
|
txt.chrout('\n')
|
|
test_stack.test()
|
|
}
|
|
|
|
}
|