prog8/examples/test.p8
Irmen de Jong 557f4f689f doc
2021-10-13 00:50:54 +02:00

15 lines
270 B
Lua

%import textio
main {
str myBar = "main.bar"
foo_bar:
%asminclude "compiler/test/fixtures/foo_bar.asm" ; FIXME: should be accessible from inside start() but give assembler error
sub start() {
txt.print(myBar)
txt.print(&foo_bar)
return
}
}