Skip to content

Instantly share code, notes, and snippets.

@brurucy
Created February 9, 2023 21:19
Show Gist options
  • Save brurucy/d805f08513371c70649d43605c729126 to your computer and use it in GitHub Desktop.
Save brurucy/d805f08513371c70649d43605c729126 to your computer and use it in GitHub Desktop.
memoir
type Obj struct {
foo int
bar string
}
func (o *Obj) ToString() string {
return fmt.Sprintf(“obj: %d %s”, o.foo, o.bar)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment