Skip to content

Commit

Permalink
Initial lein new content.
Browse files Browse the repository at this point in the history
  • Loading branch information
malcolmsparks committed Dec 6, 2012
0 parents commit ddb5184
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitignore
@@ -0,0 +1,10 @@
/target
/lib
/classes
/checkouts
pom.xml
*.jar
*.class
.lein-deps-sum
.lein-failures
.lein-plugins
13 changes: 13 additions & 0 deletions README.md
@@ -0,0 +1,13 @@
# ciao

A Clojure library designed to ... well, that part is up to you.

## Usage

FIXME

## License

Copyright © 2012 FIXME

Distributed under the Eclipse Public License, the same as Clojure.
3 changes: 3 additions & 0 deletions doc/intro.md
@@ -0,0 +1,3 @@
# Introduction to ciao

TODO: write [great documentation](http://jacobian.org/writing/great-documentation/what-to-write/)
6 changes: 6 additions & 0 deletions project.clj
@@ -0,0 +1,6 @@
(defproject ciao "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.4.0"]])
6 changes: 6 additions & 0 deletions src/ciao/core.clj
@@ -0,0 +1,6 @@
(ns ciao.core)

(defn foo
"I don't do a whole lot."
[x]
(println x "Hello, World!"))
7 changes: 7 additions & 0 deletions test/ciao/core_test.clj
@@ -0,0 +1,7 @@
(ns ciao.core-test
(:use clojure.test
ciao.core))

(deftest a-test
(testing "FIXME, I fail."
(is (= 0 1))))

0 comments on commit ddb5184

Please sign in to comment.