2013年9月28日
摘要: 1 首先下载 Light table 然后 解压到到一文件夹。目录中千万不能有空格 下载地址 http://www.lighttable.com/2下载构建工具 下载地址 http://leiningen-win-installer.djpowell.net/ Leiningen 中文教程 http://wiki.fnil.net/index.php?title=Leiningen_tutorial%E4%B8%AD%E6%96%87%E7%89%883安装 Leiningen 安装教程看这里 有图 http://leiningen-win-installer.djpowell.net/4 然 阅读全文
posted @ 2013-09-28 22:50 c3tc3tc3t 阅读(1314) 评论(2) 推荐(0)
摘要: 这是递归(def f (fn fb [x] (if (< x 2) 1 (* x (fb (- x 1)) ) ) ) )(def f (fn fb [x y] (if (= x 1) y (fb (- x 1) (* x y)) ) ) ) 阅读全文
posted @ 2013-09-28 12:57 c3tc3tc3t 阅读(416) 评论(0) 推荐(0)