Skip to content

Instantly share code, notes, and snippets.

@tebeka
Created September 15, 2022 14:44
Show Gist options
  • Save tebeka/0fb885a6c1d62c55368af6e303c58138 to your computer and use it in GitHub Desktop.
Save tebeka/0fb885a6c1d62c55368af6e303c58138 to your computer and use it in GitHub Desktop.
cart := []string{"apple", "pear", "milk"}
fruits := cart[: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