What will be printed in this case?
var s = []int{12, 23}
var sn = s
s[0] = 10
sn[1] = 12
fmt.Println(sn)What will be printed in this case?
var s = []int{12, 23}
var sn = s
s[0] = 10
sn[1] = 12
fmt.Println(sn)Create a free account to access the full topic