Merge pull request #379 from bjh21/bjh21-unterminated-string-fixes
[jackhill/mal.git] / tests / incB.mal
1 ;; A comment in a file
2 (def! inc4 (fn* (a) (+ 4 a)))
3 (def! inc5 (fn* (a) ;; a comment after code
4 (+ 5 a)))
5
6 (prn "incB.mal finished")
7 "incB.mal return string"
8
9 ;; ending comment
10