소스 검색

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!");
 }