Better constant strings for SSA; Fix Type_Info

This commit is contained in:
Ginger Bill
2016-10-26 20:10:32 +01:00
parent aed7a83f5b
commit 09f39ae2cc
12 changed files with 420 additions and 294 deletions

View File

@@ -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)
}