在Common Lisp中, let 使用一个列表进行绑定(bind),即: (let ((var1 1) (var2 2)) ...) 尽管Clojure使用向量代替: (let [a 1 b 2] ...) 除了可读性之外,Clojure是否 ...
確定! 回上一頁