Skip to content

Instantly share code, notes, and snippets.

@deque-blog
Created February 16, 2018 16:20
Show Gist options
  • Save deque-blog/950187fde20c9ff73ed811fc82c4babd to your computer and use it in GitHub Desktop.
Save deque-blog/950187fde20c9ff73ed811fc82c4babd to your computer and use it in GitHub Desktop.
;; 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