From bbc9739f5c1f6fa4dc8ad36aed7bcb1cba2eadea Mon Sep 17 00:00:00 2001 From: Ginger Bill Date: Mon, 19 Sep 2016 11:51:21 +0100 Subject: Core library and Better name mangling for files --- code/sub/test.odin | 5 +++++ code/test.odin | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 code/sub/test.odin create mode 100644 code/test.odin (limited to 'code') 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!") +} -- cgit v1.2.3