File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ /target
2+ /lib
3+ /classes
4+ /checkouts
5+ pom.xml
6+ pom.xml.asc
7+ * .jar
8+ * .class
9+ .lein-deps-sum
10+ .lein-failures
11+ .lein-plugins
12+ .lein-repl-history
Original file line number Diff line number Diff line change 1+ # back5
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 © 2013 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 back5
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 back5 " 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" ]])
Original file line number Diff line number Diff line change 1+ (ns back5.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 back5.core-test
2+ (:require [clojure.test :refer :all ]
3+ [back5.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