前回leiningenをインストールしたので一番簡単なプロジェクトを作ってみる。 プロジェクト作成 お決まりのHelloWorld $ lein new helloworld helloworldというディレクトリが作成され、プロジェクトのスケルトンができてます。中身はこんな感じ $ find helloworld helloworld/ helloworld/.gitignore helloworld/project.clj helloworld/README helloworld/src helloworld/src/helloworld.clj helloworld/test project.cljを開いて以下のように追記。 (defproject helloworld "1.0.0-SNAPSHOT" :description "FIXME: write" :dependencie

