Search code examples
clojure

What does #_ mean in Clojure?


I'm seeing #_ around a Clojure project, but this symbol doesn't show up in clojure docs, and the REPL won't let me evaluate (clojure.repl/doc #_).


Solution

  • A little digging in search results showed this is ignore next form. It's listed as a reader macro.

    It was hard enough to find I thought I'd surface it here.