Fix array bounds checking

This commit is contained in:
Ginger Bill
2016-09-12 23:16:06 +01:00
parent d4ba6b5466
commit 59fb74d2a2
8 changed files with 264 additions and 199 deletions
+2 -5
View File
@@ -1,9 +1,6 @@
#load "basic.odin"
main :: proc() {
str := "Hellope"
println(str, true, 6.28)
println([4]int{1, 2, 3, 4})
println("% % % %", "Hellope", true, 6.28, [4]int{1, 2, 3, 4})
println("%0 %1 %0", "Hellope", 34)
}