mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-03 14:18:47 +00:00
Fix array bounds checking
This commit is contained in:
+2
-5
@@ -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)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user