
Clojure
iteye_123
这个作者很懒,什么都没留下…
展开
-
Clojure 文档及eclipse插件
文档地址: http://dev.clojure.org/display/doc/Homeeclipse 插件地址: http://updatesite.ccw-ide.org/stable独立的: http://doc.ccw-ide.org/documentation.html#_install_counterclockwise原创 2014-12-22 21:59:47 · 198 阅读 · 0 评论 -
Leiningen 使用
下载jar包: https://github.com/technomancy/leiningen/releases下载zip包:https://github.com/technomancy/leiningen比如你要安装到D:\lein 就copy leningen-xxxx.jar包和zip包到这儿目录下,兵解压zip包当当前目录,然后copy解压后目录中的bin目录下的lein.bat...原创 2014-12-24 07:45:33 · 427 阅读 · 0 评论 -
几种符号
' ~ ` @ 这些符号在Clojure中的含义`表示syntax quote,'表示quote,~表示unquote,~@表示unquote splicing,详细说明下。如果某段代码前面加了'就表示这段代码被quote而不会去求值了,而`的syntax quote则表示会把相应的变量变成有namespace的形式,而~和`是搭配使用的,~必须在`的后面,并且~的数量不能超...原创 2015-01-14 09:43:49 · 138 阅读 · 0 评论