Created
May 4, 2015 09:49
-
-
Save iporsut/774c85c3858a0c8403bd to your computer and use it in GitHub Desktop.
Account String Method
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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