package main import "fmt" func main() { fmt.Println("Hello, world!") test := make([]int, 3) test2 := []int{} fmt.Println(test, test2) }