Skip to content

Commit

Permalink
Added basic markdown README
Browse files Browse the repository at this point in the history
  • Loading branch information
weavejester committed Nov 25, 2010
1 parent 81f371f commit 862811b
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 17 deletions.
17 changes: 0 additions & 17 deletions README

This file was deleted.

23 changes: 23 additions & 0 deletions README.md
@@ -0,0 +1,23 @@
Hassium
=======

Hassium is a MongoDB client library for the Clojure programming
language.

Example
-------

(def db
{:host "127.0.0.1"
:port 27017
:database "demo-db"})

(def people
(collection "people")

(with-connection db
(insert people {:name "Alice"}
{:name "Bob"}
{:name "Carol"})
(doseq [p @(find-all people)]
(println (:name p))))

0 comments on commit 862811b

Please sign in to comment.