Wednesday, May 13, 2015

Exercism: "Bank Account in Clojure"

In the last event of Clojure Developers Barcelona, we practiced mob programming to solve the Bank Account problem in Clojure.

This is our solution:

(ns bank-account)
(defn open-account []
(atom 0))
(defn close-account [_])
(defn get-balance [acct]
@acct)
(defn update-balance [account amount]
(swap! account + amount))
You can nitpick our solution here or see all the exercises I've done so far in this repository.

1 comment:

  1. I would like an example of a bank with many branches and accounts maintained/stored in those branches. That kind of example may help me understand quicker?

    ReplyDelete