Skip to content

Instantly share code, notes, and snippets.

@verma

verma/indent.clj Secret

Created June 7, 2015 21:32
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 verma/69c407f9621154288d6a to your computer and use it in GitHub Desktop.
Save verma/69c407f9621154288d6a to your computer and use it in GitHub Desktop.
(ns stuff.test-indentation)
(defprotocol ISuchProtocol
(many-method [_])
(such-wow [_]))
(defrecord WhatIsThis []
ISuchProtocol
(many-method [_]
(println "Why is this here?"))
(such-wow [_]
(println "Again, this is not what I wanted!")))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment