Skip to content

Instantly share code, notes, and snippets.

@quanticle
Created November 30, 2012 05:39
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 quanticle/4173953 to your computer and use it in GitHub Desktop.
Save quanticle/4173953 to your computer and use it in GitHub Desktop.
Lisp alignment
(defn func-foo [arg1 arg2 arg3]
(let bar (+ arg1 arg2)
(let baz (+ bar arg3)
(cond (= (% baz 2) 0)
(handle-even baz)
(handle-odd baz)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment