mirror of
https://github.com/irmen/prog8.git
synced 2024-11-04 04:05:00 +00:00
f470576822
because these are now prefixed internally before generating assembly.
10 lines
134 B
Lua
10 lines
134 B
Lua
%import textio
|
|
%import foo_bar
|
|
main {
|
|
str myBar = "main.bar"
|
|
sub start() {
|
|
txt.print(myBar)
|
|
txt.print(foobar.barbar)
|
|
}
|
|
}
|