Core library and Better name mangling for files

This commit is contained in:
Ginger Bill
2016-09-19 11:51:21 +01:00
parent 828095afd1
commit bbc9739f5c
11 changed files with 1643 additions and 113 deletions

5
code/sub/test.odin Normal file
View File

@@ -0,0 +1,5 @@
#import "fmt.odin" as fmt
thing :: proc() {
fmt.println("Sub Hello!")
}

5
code/test.odin Normal file
View File

@@ -0,0 +1,5 @@
#import "fmt.odin" as fmt
thing :: proc() {
fmt.println("Hello!")
}