tokei/tests/data/clojurec.cljc
Khalid Jebbari 349fe2b585 Add support for ClojureC + tests for all Clojure (#224)
* Add cljc lang + first pass for testing all Clojure

* Fix the special comment in tests + Small precision in CONTRIBUTING
2018-04-26 16:34:47 +01:00

20 lines
287 B
Clojure

; 19 lines 13 code 3 comments 3 blanks
(ns clojure)
; Below is a function
(defn a-fn
"Docstring with a column ;"
[a b]
(+ 1 1))
(defn a-fn2
;"Not a doc"
"Doc doc again"
[a b] ; a and b right?
(let [multiline "I'm
a multline
; string
"]
(str multline a b)))