aboutsummaryrefslogtreecommitdiff
path: root/code
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2016-10-26 20:10:32 +0100
committerGinger Bill <bill@gingerbill.org>2016-10-26 20:10:32 +0100
commit09f39ae2ccea78ecd37facc5431c51e4c9666630 (patch)
treeb42adb2c539be81df9e1d48be19f7c4713fe01c7 /code
parentaed7a83f5b8e812b3c2c31bdf745a3107da80190 (diff)
Better constant strings for SSA; Fix Type_Info
Diffstat (limited to 'code')
-rw-r--r--code/demo.odin4
1 files changed, 3 insertions, 1 deletions
diff --git a/code/demo.odin b/code/demo.odin
index 5d84f9340..d714907e3 100644
--- a/code/demo.odin
+++ b/code/demo.odin
@@ -1,8 +1,10 @@
#import "fmt.odin"
+str := "Hellope"
+
a: [12]u8
main :: proc() {
v: [4]f32
v[0] = 123
- fmt.println("Hellope!", v, v[0], a)
+ fmt.println(str, v, v[0], a)
}