aboutsummaryrefslogtreecommitdiffstats
path: root/exercises/arrays/arrays2/main.go
blob: d24302bbb58842c7260d9e2eb9fed82afde277d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// arrays2
// Make me compile!

// I AM NOT DONE
package main

import "fmt"

func main() {
	names := [4]string{"John", "Maria", "Carl", 10}
	fmt.Println(names)
}