mirror of
https://github.com/kanaka/mal.git
synced 2024-11-10 02:45:44 +03:00
f522319598
- Some additioanl tests. - Split step9 tests into optional but self-hosting requirements (metadata on functions) and other optional (conj, metadata on collections).
11 lines
182 B
Plaintext
11 lines
182 B
Plaintext
;; 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
|
|
|