All: rename stepA_interop to stepA_mal
[jackhill/mal.git] / clojure / tests / stepA_mal.mal
CommitLineData
cc021efe
JM
1;; Testing basic clojure interop
2
3(clj* "7")
4;=>7
5
6(clj* "\"abc\"")
7;=>"abc"
8
9(clj* "{\"abc\" 123}")
10;=>{"abc" 123}
11
12(clj* "(prn \"foo\")")
13; "foo"
14;=>nil
15
16(clj* "(for [x [1 2 3]] (+ 1 x))")
17;=>(2 3 4)