From ac0cc27ec3b618261d734f9084bd58e222882899 Mon Sep 17 00:00:00 2001 From: David Rupp Date: Sun, 10 Mar 2013 16:10:16 -0700 Subject: [PATCH] Updated README with new usage info. --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index b184286..2b3626f 100644 --- a/README.md +++ b/README.md @@ -5,11 +5,10 @@ Simple graph representation and manipulation in Clojure. ## Usage ```clojure -(use 'graffy.core) -(def g (atom {})) -(add-edge g :a :b) -(add-edge g :a :c) -@g +(let [g (make-graph)] + (add-edge g :a :b) + (add-edge g :a :c) + g) ``` ## License