Skip to content

Instantly share code, notes, and snippets.

@arriqaaq
Created January 24, 2023 12:21
Show Gist options
  • Select an option

  • Save arriqaaq/d4910ebf30915d437df858bb5469ac9f to your computer and use it in GitHub Desktop.

Select an option

Save arriqaaq/d4910ebf30915d437df858bb5469ac9f to your computer and use it in GitHub Desktop.
func NewPerson(builder func(p *Person)) *Person {
person := &Person{}
builder(person)
return person
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment