mirror of
https://github.com/irmen/prog8.git
synced 2024-11-26 11:49:22 +00:00
17 lines
246 B
Lua
17 lines
246 B
Lua
%import textio
|
|
%zeropage dontuse
|
|
|
|
%output raw
|
|
%launcher none
|
|
%address $2000
|
|
|
|
main {
|
|
uword @shared variable
|
|
sub start() {
|
|
txt.print("hello!\n")
|
|
txt.print_uw(variable)
|
|
txt.nl()
|
|
sys.exit3(1,2,3,false)
|
|
}
|
|
}
|