From a60e513dddaf82894b34f7e12f48922aa1217bac Mon Sep 17 00:00:00 2001 From: Carlo Zancanaro Date: Sat, 27 Apr 2013 21:55:59 +1000 Subject: Initial commit. --- .hgignore | 13 +++++++++++++ README.md | 13 +++++++++++++ doc/intro.md | 3 +++ project.clj | 6 ++++++ src/clojure_sql/core.clj | 6 ++++++ 5 files changed, 41 insertions(+) create mode 100644 .hgignore create mode 100644 README.md create mode 100644 doc/intro.md create mode 100644 project.clj create mode 100644 src/clojure_sql/core.clj 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!")) -- cgit v1.2.3