浏览代码

Modified the test program to see where the compiler inserted the code.

Zachary Pierson 8 年之前
父节点
当前提交
90ab448bca
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      code/test.odin

+ 2 - 2
code/test.odin

@@ -5,10 +5,10 @@ thing :: proc() {
 }*/
 
 
-//#import "fmt.odin";
+#import "fmt.odin";
 
 main :: proc() {
-	//fmt.println("hello, world!");
+	fmt.println("hello, world!");
 }