File tree Expand file tree Collapse file tree 5 files changed +36
-0
lines changed Expand file tree Collapse file tree 5 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ # project1
2+
3+ A Clojure library designed to ... well, that part is up to you.
4+
5+ ## Usage
6+
7+ FIXME
8+
9+ ## License
10+
11+ Copyright © 2014 FIXME
12+
13+ Distributed under the Eclipse Public License, the same as Clojure.
Original file line number Diff line number Diff line change 1+ # Introduction to project1
2+
3+ TODO: write [ great documentation] ( http://jacobian.org/writing/great-documentation/what-to-write/ )
Original file line number Diff line number Diff line change 1+ (defproject project1 " 0.1.0-SNAPSHOT"
2+ :description " FIXME: write description"
3+ :url " http://example.com/FIXME"
4+ :license {:name " Eclipse Public License"
5+ :url " http://www.eclipse.org/legal/epl-v10.html" }
6+ :dependencies [[org.clojure/clojure " 1.5.1" ]
7+ [ring " 1.2.0" ]])
Original file line number Diff line number Diff line change 1+ (ns project1.core )
2+
3+ (defn foo
4+ " I don't do a whole lot."
5+ [x]
6+ (println x " Hello, World!" ))
Original file line number Diff line number Diff line change 1+ (ns project1.core-test
2+ (:require [clojure.test :refer :all ]
3+ [project1.core :refer :all ]))
4+
5+ (deftest a-test
6+ (testing " FIXME, I fail."
7+ (is (= 0 1 ))))
You can’t perform that action at this time.
0 commit comments