@@ -0,0 +1,13 @@
+# odin testing
+
+```
+> make o hellope
+odin run hellope.odin -file
+Hellope!
+> odin version
+odin version dev-2025-07:090cac62f
@@ -0,0 +1,29 @@
+# todo clean
+# make o hellope
+# for
+# odin run hellope.odin -file
+o:
+ odin run $(filter-out $@,$(MAKECMDGOALS)).odin -file
+c:
+ odin run .
+c2:
+ odin build <dir>
+run:
+ ./otest
+# ignore other - cause - make: *** No rule to make target 'hellope'. Stop.
+%:
+ @:
+default: run
+.PHONY: c c2 run
@@ -0,0 +1,3 @@
+include ../comp.mk
@@ -0,0 +1,10 @@
+package main
+import "core:fmt"
+main :: proc(){
+ // hello world
+ fmt.println("Hellope!")
+}