This is our solution:
This file contains 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
(ns bank-account) | |
(defn open-account [] | |
(atom 0)) | |
(defn close-account [_]) | |
(defn get-balance [acct] | |
@acct) | |
(defn update-balance [account amount] | |
(swap! account + amount)) |
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