prog8/compiler/test/fixtures/importFromSameFolder.p8
Irmen de Jong f470576822 it's now possible to use symbols that are the same name as 6502 instructions
because these are now prefixed internally before generating assembly.
2022-11-30 18:39:56 +01:00

10 lines
134 B
Lua

%import textio
%import foo_bar
main {
str myBar = "main.bar"
sub start() {
txt.print(myBar)
txt.print(foobar.barbar)
}
}