Skip to content

Instantly share code, notes, and snippets.

@jjuliano
Created June 2, 2019 22:10
Show Gist options
  • Save jjuliano/e0f179b25e7edb497554760c454fb990 to your computer and use it in GitHub Desktop.
Save jjuliano/e0f179b25e7edb497554760c454fb990 to your computer and use it in GitHub Desktop.
a := [...]int{1,2,3,4,5,0}
drop := a[3:]
fmt.Println(drop)
// [4 5 0]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment