... 의 쓰임세 중에 이런것이 있다.
한번 쳐다봐 주자.
append 함수도 한번 쳐다봐 주자.
package main
import "fmt"
func main() {
a := [...] int { 1, 2, 3}
x := [] int { 1, 2, 3}
fmt.Printf( "type-a: %T\n", a)
fmt.Printf( "type-x: %T\n", x)
fmt.Println( x)
x = append( x, 4, 5, 6)
fmt.Println( x)
y := [] int { 7, 8, 9 }
x = append( x, y... )
fmt.Println( x)
}