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

// I AM NOT DONE
package main

import "fmt"

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