summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.hgignore13
-rw-r--r--README.md13
-rw-r--r--doc/intro.md3
-rw-r--r--project.clj6
-rw-r--r--src/clojure_sql/core.clj6
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!"))