blob: ed287341618bb217228f0a73ed66d9ed89d8b7f3 (
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})
;; Test commas as whitespace
(def! myvec [1 2, 3])
(prn "incB.mal finished")
"incB.mal return string"
|