aboutsummaryrefslogtreecommitdiff
path: root/code
diff options
context:
space:
mode:
Diffstat (limited to 'code')
-rw-r--r--code/sub/test.odin5
-rw-r--r--code/test.odin5
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!")
+}