Odin Notes and Examples
(top-level)

Arrays

// Fixed array. Length set at compile-time.
arr := [3]int {77, 78, 79}

// Fetch and set vals just as you'd expect.

// Looping over an array is just as you'd expect.
arr := [3]int {77, 78, 79}
for i in arr {
    fmt.println(i)
}

// Interestingly, can loop over them backward like so:
#reverse for i in arr {
    fmt.println(i)
}