Skip to content

Instantly share code, notes, and snippets.

@jochasinga
Created January 20, 2016 15:53
Show Gist options
  • Save jochasinga/5897be823e2ccb187b25 to your computer and use it in GitHub Desktop.
Save jochasinga/5897be823e2ccb187b25 to your computer and use it in GitHub Desktop.
Simple structs in Go
type Animal struct {
Kingdom string
Legs uint8
}
type Cat struct {
Animal
Sound string
Fav []string
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment