Sha256: 1ce4738e63497b90ab4bc809074da842568ba090745f76e8e537081ee4a72b69

Contents?: true

Size: 1.59 KB

Versions: 107

Compression:

Stored size: 1.59 KB

Contents

# Bank Account

Simulate a bank account supporting opening/closing, withdrawals, and deposits
of money. Watch out for concurrent transactions!

A bank account can be accessed in multiple ways. Clients can make
deposits and withdrawals using the internet, mobile phones, etc. Shops
can charge against the account.

Create an account that can be accessed from multiple threads/processes
(terminology depends on your programming language).

It should be possible to close an account; operations against a closed
account must fail.

## Instructions

Run the test file, and fix each of the errors in turn. When you get the
first test to pass, go to the first pending or skipped test, and make
that pass as well. When all of the tests are passing, feel free to
submit.

Remember that passing code is just the first step. The goal is to work
towards a solution that is as readable and expressive as you can make
it.

Have fun!

## Running the tests

To run the tests run the command `go test` from within the exercise directory.

If the test suite contains benchmarks, you can run these with the `-bench`
flag:

    go test -bench .

Keep in mind that each reviewer will run benchmarks on a different machine, with
different specs, so the results from these benchmark tests may vary.

## Further information

For more detailed information about the Go track, including how to get help if
you're having trouble, please visit the exercism.io [Go language page](http://exercism.io/languages/go/about).


## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

Version data entries

107 entries across 107 versions & 1 rubygems

Version Path
trackler-2.2.1.3 tracks/go/exercises/bank-account/README.md
trackler-2.2.1.2 tracks/go/exercises/bank-account/README.md
trackler-2.2.1.1 tracks/go/exercises/bank-account/README.md
trackler-2.2.1.0 tracks/go/exercises/bank-account/README.md
trackler-2.2.0.6 tracks/go/exercises/bank-account/README.md
trackler-2.2.0.5 tracks/go/exercises/bank-account/README.md
trackler-2.2.0.4 tracks/go/exercises/bank-account/README.md