Skip to content

Instantly share code, notes, and snippets.

@tebeka
Created September 15, 2022 14:44
Show Gist options
  • Save tebeka/0533544581102850359c60139763557e to your computer and use it in GitHub Desktop.
Save tebeka/0533544581102850359c60139763557e to your computer and use it in GitHub Desktop.
cart := []string{"apple", "pear", "milk"}
fruits := cart[:2:2]
fruits = append(fruits, "lemon")
fmt.Println("cart:", cart, "fruits:", fruits)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment