Fix namespacing issues for #import; allow using ImportName

This commit is contained in:
Ginger Bill
2016-09-14 22:58:24 +01:00
parent 79f575ae8e
commit bd365e5176
12 changed files with 223 additions and 761 deletions
+5 -3
View File
@@ -1,10 +1,12 @@
#import "print.odin" as _
#import "fmt.odin" as fmt
#import "game.odin" as game
test_proc :: proc() {
println("Hello?")
fmt.println("Hello?")
}
main :: proc() {
println("% % % %", "Hellope", true, 6.28, {4}int{1, 2, 3, 4})
// fmt.println("% % % %", "Hellope", true, 6.28, {4}int{1, 2, 3, 4})
game.run()
}