wiki/content/20200828182327-arrays.md

26 lines
464 B
Markdown
Raw Normal View History

2024-05-06 20:40:05 +00:00
---
id: 24d46884-652c-4b64-b8e1-1baf81bea0f4
title: 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](20200828182546-slices)
``` go
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)
}
```