How to copy slice items into another slice in Go

1 Answer

0 votes
package main

import "fmt"

func main() {
	sa := []int{6, 7, 4, 2} 
	sb := make([]int, 6, 10) 
	copy(sb, sa)              

	fmt.Println(sb)
	
	sb[4] = 999
	fmt.Println(sb)
}


   
/*
run:
   
[6 7 4 2 0 0]
[6 7 4 2 999 0]
 
*/

 



answered Aug 11, 2020 by avibootz
...