Skip to content

Instantly share code, notes, and snippets.

@iporsut
Created May 4, 2015 09:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iporsut/774c85c3858a0c8403bd to your computer and use it in GitHub Desktop.
Save iporsut/774c85c3858a0c8403bd to your computer and use it in GitHub Desktop.
Account String Method
func (acc Account) String() string {
return fmt.Sprintf("Account %s have balance %0.2f", acc.Name, acc.Balance)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment