zettacode.files/hello_world.text/odin.txt in zettacode-0.1.0 vs zettacode.files/hello_world.text/odin.txt in zettacode-0.1.1
- old
+ new
@@ -1,6 +1,6 @@
-ck m
- "c:f"
+package main
+import "core:fmt"
- :: c() {
- f.("H!")
+main :: proc() {
+ fmt.println("Hellope!");
}