Skip to content

Instantly share code, notes, and snippets.

@J7mbo
Created February 22, 2019 12:06
Show Gist options
  • Save J7mbo/d34f9c86c2b96d122b738a9da857c450 to your computer and use it in GitHub Desktop.
Save J7mbo/d34f9c86c2b96d122b738a9da857c450 to your computer and use it in GitHub Desktop.
golang-constructors-blog-4
/* Yep, now it's private because of the lower-cased 'm' */
type myStruct struct {
num int
}
func NewMyStruct() *myStruct {
return &myStruct{num: 42}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment