Skip to content

Commit

Permalink
Updated README with new usage info.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidrupp committed Mar 10, 2013
1 parent 08ef17f commit ac0cc27
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ac0cc27

Please sign in to comment.