Что выведется
import ( "fmt" ) func main() { nums := make([]int, 1, 3) fmt.Println(nums) // <- what's the output? appendSlice(nums,```