github.com/traefik/yaegi@v0.15.1/_test/copy0.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]