Skip to content

Instantly share code, notes, and snippets.

@deque-blog
Last active April 30, 2017 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deque-blog/aba40dbee93c991b1f5a53bb9cde6925 to your computer and use it in GitHub Desktop.
Save deque-blog/aba40dbee93c991b1f5a53bb9cde6925 to your computer and use it in GitHub Desktop.
(defn absolute-value
[x]
(if (< x 0) ;; Condition
(* -1 x) ;; Consequence
x)) ;; Alternative
(absolute-value -1)
=> 1
(absolute-value 1)
=> 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment