clojure - Leiningen

Leiningen是一个命令行工具,用来解决Clojure项目的包管理、依赖、打包、部署等问题。 安装 1.Download the lein script (or on Windows lein.bat) 2.Place it on your $PATH where »

clj-time 简单使用

clj-time 是一个Clojure语言的日期和时间处理库,封装自 Joda Time 库。 (ns test.test-clj (:use [clj-time.format]) (:require [clj-time.local :as loc] »

Clojure 读写文件

Clojure读取文件 简单读文件(slurp) Clojure IO标准库 使用java io 写文件 简单写文件(split) Clojure IO 写文件 Clojure读取文件 Clojure读取文件 简单读文件(slurp) 最简单的读取文件可以采用 »