Skip to content

Instantly share code, notes, and snippets.

@shockalotti
Created May 14, 2014 02:53
Show Gist options
  • Save shockalotti/7494e49468d677e3fdc8 to your computer and use it in GitHub Desktop.
Save shockalotti/7494e49468d677e3fdc8 to your computer and use it in GitHub Desktop.
Go golang - basic array
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