Skip to content

Commit

Permalink
More tweaks for GFM.
Browse files Browse the repository at this point in the history
  • Loading branch information
richard-lyman committed Jul 28, 2012
1 parent 1e5bf80 commit 8cfddd0
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions README.markdown
Expand Up @@ -25,21 +25,20 @@
2. `cd something`
3. Add the Clojars dependency to the new project.clj file (`[com.lithinos/amotoen "0.2.0-SNAPSHOT"]`)
- Your dependencies section would then look like this: `:dependencies [[org.clojure/clojure "1.4.0"] [com.lithinos/amotoen "0.2.0-SNAPSHOT"]]`
4. Modify `test/something/core_test.clj` so that it looks like this:
```
(ns something.core-test
(:use clojure.test
something.core
clojure.pprint ; Amotoen doesn't require this, just the sample code below
com.lithinos.amotoen.grammars.csv))
(deftest use-amotoen
(pprint (to-clj "a,b,c")))
```
4. Modify `test/something/core_test.clj` so that it looks like the sample below
5. Run `lein test`
- You should see: `[["a" "b" "c"]]`
6. Create your program as normal in the src folder

```
(ns something.core-test
(:use clojure.test
something.core
clojure.pprint ; Amotoen doesn't require this, just the sample code below
com.lithinos.amotoen.grammars.csv))
(deftest use-amotoen
(pprint (to-clj "a,b,c")))
```

<h2>Basic Definitions</h2>

Expand Down

0 comments on commit 8cfddd0

Please sign in to comment.