You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
180 B
Go

package main
import "fmt"
var myArray [5]int
func main() {
fmt.Println(myArray)
myArray[0] = 100
fmt.Println(myArray)
myArray[len(myArray)-1] = 1000
fmt.Println(myArray)
}