Skip to content

Instantly share code, notes, and snippets.

@iporsut
Created May 4, 2015 09:53
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/2a6fad40c682f11d4e85 to your computer and use it in GitHub Desktop.
Save iporsut/2a6fad40c682f11d4e85 to your computer and use it in GitHub Desktop.
Account use Deposit Method
func main() {
acc := Account{Name: "Weerasak", Balance : 1000.00 }
acc.Deposit(500.00)
fmt.Println(acc)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment