Created
February 16, 2018 16:20
-
-
Save deque-blog/950187fde20c9ff73ed811fc82c4babd to your computer and use it in GitHub Desktop.
This file contains hidden or 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
;; Calling make-payment using named arguments | |
(make-payment | |
{:money "10 EUR" | |
:from "Alice" | |
:to "Bob"}) | |
;; Versus calling make-payment with positional arguments | |
(make-payment "10 EUR" "Alice" "Bob") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment