Skip to content

Instantly share code, notes, and snippets.

@JakeTheCorn
Created July 14, 2018 04:46
Show Gist options
  • Save JakeTheCorn/a4b751fd61c05f68eb8a98fcfabaf07f to your computer and use it in GitHub Desktop.
Save JakeTheCorn/a4b751fd61c05f68eb8a98fcfabaf07f to your computer and use it in GitHub Desktop.
Add Item to Slice in Go
func (cg *ColorGroup) addColor(newColor string) {
cg.Colors = append(cg.Colors, newColor)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment