2016년 12월 7일 수요일

[clojure] let usage

let structure is

(let [ variable    ] ( Method ) )

ex]

(let [x "is x" y "isy" color ["blue" "red"] ] (str "this color is " color " and name is " x)