diff options
| author | Ginger Bill <bill@gingerbill.org> | 2016-09-19 11:51:21 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2016-09-19 11:51:21 +0100 |
| commit | bbc9739f5c1f6fa4dc8ad36aed7bcb1cba2eadea (patch) | |
| tree | d3bcef46328c0ca69adee65ee7d2ef758638d71a /code | |
| parent | 828095afd1351b218cae6b60033200a92894921c (diff) | |
Core library and Better name mangling for files
Diffstat (limited to 'code')
| -rw-r--r-- | code/sub/test.odin | 5 | ||||
| -rw-r--r-- | code/test.odin | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/code/sub/test.odin b/code/sub/test.odin new file mode 100644 index 000000000..fe1a937dd --- /dev/null +++ b/code/sub/test.odin @@ -0,0 +1,5 @@ +#import "fmt.odin" as fmt + +thing :: proc() { + fmt.println("Sub Hello!") +} diff --git a/code/test.odin b/code/test.odin new file mode 100644 index 000000000..c4636a7b7 --- /dev/null +++ b/code/test.odin @@ -0,0 +1,5 @@ +#import "fmt.odin" as fmt + +thing :: proc() { + fmt.println("Hello!") +} |