Skip to content

Instantly share code, notes, and snippets.

@zombiezen
Last active February 22, 2018 18:59
Show Gist options
  • Save zombiezen/7d0200e805f5a43de964b4957308003d to your computer and use it in GitHub Desktop.
Save zombiezen/7d0200e805f5a43de964b4957308003d to your computer and use it in GitHub Desktop.
A simple Go library with a structure including a name and a number.
package contacts
type Person struct {
FirstName string
LastName string
FavoriteNumber int
}
func Me() *Person {
return &Person{
FirstName: "Ross",
LastName: "Light",
FavoriteNumber: 42,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment