diff options
author | Carlo Zancanaro <carlo@clearboxsystems.com.au> | 2013-04-27 21:55:59 +1000 |
---|---|---|
committer | Carlo Zancanaro <carlo@clearboxsystems.com.au> | 2013-04-27 21:55:59 +1000 |
commit | a60e513dddaf82894b34f7e12f48922aa1217bac (patch) | |
tree | a56eb9ae24faf31d32ff224dc0892a42143207d4 |
Initial commit.
-rw-r--r-- | .hgignore | 13 | ||||
-rw-r--r-- | README.md | 13 | ||||
-rw-r--r-- | doc/intro.md | 3 | ||||
-rw-r--r-- | project.clj | 6 | ||||
-rw-r--r-- | src/clojure_sql/core.clj | 6 |
5 files changed, 41 insertions, 0 deletions
diff --git a/.hgignore b/.hgignore new file mode 100644 index 0000000..c04b460 --- /dev/null +++ b/.hgignore @@ -0,0 +1,13 @@ +syntax:glob +target/ +lib/ +classes/ +checkouts/ +pom.xml +pom.xml.asc +*.jar +*.class +.lein-deps-sum +.lein-failures +.lein-plugins +.lein-repl-history diff --git a/README.md b/README.md new file mode 100644 index 0000000..7b454a1 --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# clojure-sql + +A Clojure library designed to ... well, that part is up to you. + +## Usage + +FIXME + +## License + +Copyright © 2013 FIXME + +Distributed under the Eclipse Public License, the same as Clojure. diff --git a/doc/intro.md b/doc/intro.md new file mode 100644 index 0000000..be2e9a6 --- /dev/null +++ b/doc/intro.md @@ -0,0 +1,3 @@ +# Introduction to clojure-sql + +TODO: write [great documentation](http://jacobian.org/writing/great-documentation/what-to-write/) diff --git a/project.clj b/project.clj new file mode 100644 index 0000000..c024d44 --- /dev/null +++ b/project.clj @@ -0,0 +1,6 @@ +(defproject clojure-sql "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.5.1"]]) diff --git a/src/clojure_sql/core.clj b/src/clojure_sql/core.clj new file mode 100644 index 0000000..423ff8e --- /dev/null +++ b/src/clojure_sql/core.clj @@ -0,0 +1,6 @@ +(ns clojure-sql.core) + +(defn foo + "I don't do a whole lot." + [x] + (println x "Hello, World!")) |