Что выведет следующий код:
package main import "fmt" func foo(src []int) { src = append(src, 5) } func main() { arr := []int{1, 2, 3}