wiki/content/20200828182327-arrays.md

481 B

date id title
2020-08-28 24d46884-652c-4b64-b8e1-1baf81bea0f4 Golang Arrays

Arrays are a thing in Go as well. Once initialized arrays cannot be resized, if you're into that type of thing (no judgement) see slices

package main

import "fmt"

func main() {
    var a [2]string
    a[0] = "Hello"
    a[1] = "World"
    fmt.Println(a[0], a[1])
    fmt.Println(a)

    primes := [6]int{2, 3, 5, 7, 11, 13}
    fmt.Println(primes)
}