aboutsummaryrefslogtreecommitdiff
path: root/tests/incB.mal
blob: 1c68810b16aa0d70e6d72a01c93cff982a0ca24b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
;; A comment in a file
(def! inc4 (fn* (a) (+ 4 a)))
(def! inc5 (fn* (a)  ;; a comment after code
  (+ 5 a)))

;; Test map split across lines
(def! mymap {"a"
             1})

(prn "incB.mal finished")
"incB.mal return string"

;; ending comment