commit 9c6afead5447fda1c0ec87301218995882d8c229 Author: Linus Ericsson Date: Fri Mar 16 04:03:19 2012 +0100 added usage section in README.md diff --git a/README.md b/README.md index d68472f..4e19e8c 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,23 @@ Performance is a central concern of this project. Anything that makes it slower If you wish to work through The Reasoned Schemer with core.logic make sure to look over [this](https://github.com/clojure/core.logic/wiki/Differences-from-The-Reasoned-Schemer) first. +Usage +---- + +The fastest way to use this library is with Leiningen or Cake. Add the following to your project.clj dependencies: + +```clojure +[org.clojure/core.logic "0.6.7"] +``` + +Use via: + +```clojure +(ns your-namespace-name + (:refer-clojure :exclude [==]) + (:use clojure.core.logic)) +``` + Contributing ----