Last active
August 29, 2015 13:56
-
-
Save pbostrom/9006986 to your computer and use it in GitHub Desktop.
Clojure indentation
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
| (defn long-func-name [x y z] :bar) | |
| (defn baz1 [] | |
| (long-func-name (some-thing-arg1) | |
| (some-thing-arg2) arg3)) | |
| (defn baz2 [] | |
| (long-func-name (some-thing-arg1) | |
| (some-thing-arg2) arg3)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment