1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-17 16:47:22 +03:00
mal/tests/incB.mal

11 lines
182 B
Plaintext
Raw Normal View History

;; A comment in a file
(def! inc4 (fn* (a) (+ 4 a)))
(def! inc5 (fn* (a) ;; a comment after code
(+ 5 a)))
(prn "incB.mal finished")
"incB.mal return string"
;; ending comment