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

// I AM NOT DONE
package main

import "fmt"

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