forth: Add . interop special operator and tests
[jackhill/mal.git] / tests / incB.mal
CommitLineData
31690700
JM
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
31690700
JM
6(prn "incB.mal finished")
7"incB.mal return string"
0027e8fe
JM
8
9;; ending comment
10