mirror of
https://github.com/XAMPPRocky/tokei
synced 2024-10-30 07:11:48 +00:00
349fe2b585
* Add cljc lang + first pass for testing all Clojure * Fix the special comment in tests + Small precision in CONTRIBUTING
19 lines
287 B
Clojure
19 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)))
|