github.com/switchupcb/yaegi@v0.10.2/_test/copy1.go (about) 1 package main 2 3 import "fmt" 4 5 func main() { 6 a := []int{10, 20, 30} 7 b := &[4]int{} 8 c := b[:] 9 copy(c, a) 10 fmt.Println(c) 11 } 12 13 // Output: 14 // [10 20 30 0]