mirror of
https://github.com/odin-lang/Odin.git
synced 2026-04-28 01:03:56 +00:00
Better constant strings for SSA; Fix Type_Info
This commit is contained in:
@@ -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)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user