Skip to content

Instantly share code, notes, and snippets.

@Iverson
Created October 2, 2015 11:40
Show Gist options
  • Save Iverson/d1c236a6c8c7d24dd038 to your computer and use it in GitHub Desktop.
Save Iverson/d1c236a6c8c7d24dd038 to your computer and use it in GitHub Desktop.
package main
import "fmt"
func do(a []int) {
a[1] = 9
a = append(a, 7)
fmt.Println(a)
}
func main() {
arr := make([]int, 10)
do(arr)
fmt.Println(arr)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment