Created
January 20, 2016 15:53
-
-
Save jochasinga/5897be823e2ccb187b25 to your computer and use it in GitHub Desktop.
Simple structs in Go
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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