From 90ab448bca855b7b99a9d3c74bc90629e00e95b1 Mon Sep 17 00:00:00 2001 From: Zachary Pierson Date: Tue, 7 Feb 2017 12:26:15 -0600 Subject: [PATCH] Modified the test program to see where the compiler inserted the code. --- code/test.odin | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/test.odin b/code/test.odin index 4e2409a8f..bcd4ddc57 100644 --- a/code/test.odin +++ b/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!"); }