Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@jochasinga
Created September 30, 2014 14:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jochasinga/2dc86c99a27418e35ae1 to your computer and use it in GitHub Desktop.
Save jochasinga/2dc86c99a27418e35ae1 to your computer and use it in GitHub Desktop.
Array in Go
package main
import "fmt"
func main() {
var x [5]int
x[4] = 100
fmt.Println(x)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment