summaryrefslogtreecommitdiff
path: root/go/bank-account/README.md
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2016-08-27 16:48:26 +0200
committerDimitri Sokolyuk <demon@dim13.org>2016-08-27 16:48:26 +0200
commitc00da54ecddabb9e218029466bb35bca040b87fb (patch)
tree9df70dc496fc81b57833025b95380ff59da66f97 /go/bank-account/README.md
parent39d4afd6d12ba6dd043763f1e65dde5fd8b99497 (diff)
Slove bank account
Diffstat (limited to 'go/bank-account/README.md')
-rw-r--r--go/bank-account/README.md42
1 files changed, 42 insertions, 0 deletions
diff --git a/go/bank-account/README.md b/go/bank-account/README.md
new file mode 100644
index 0000000..b8f5d8b
--- /dev/null
+++ b/go/bank-account/README.md
@@ -0,0 +1,42 @@
+# Bank Account
+
+Bank accounts can be accessed in different ways at the same time.
+
+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!
+
+To run the tests simply run the command `go test` in the exercise directory.
+
+If the test suite contains benchmarks, you can run these with the `-bench`
+flag:
+
+ go test -bench .
+
+For more detailed info about the Go track see the [help
+page](http://exercism.io/languages/go).
+
+
+
+## Submitting Incomplete Problems
+It's possible to submit an incomplete solution so you can see how others have completed the exercise.
+