Last active
October 12, 2019 01:38
-
-
Save lachlan-eagling/f351416ea78ae6b987a6175681fca8e3 to your computer and use it in GitHub Desktop.
Blog - Anatomy of a Struct (Basic User Struct)
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 User struct { | |
| firstName string | |
| lastName string | |
| username string | |
| age int | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment