Merge pull request #89 from cbbrowne/master

Tweak to make the Quickstart ref better
This commit is contained in:
Will Kahn-Greene 2013-04-08 14:09:36 -07:00
commit efb8addc6f
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ HOW TO GET HY REAL FAST:
=> (print "Hy!")
Hy!
=> (defn salutationsnm [] (print (+ "Hy " name "!")))
=> (defn salutationsnm [name] (print (+ "Hy " name "!")))
=> (salutationsnm "YourName")
Hy YourName!

View File

@ -339,7 +339,7 @@ In hy, you could do these like:
(list-comp
(pow num 2)
(num (range 100))
(= (% num 2) 1))
(= (% num 2) 1)))
.. code-block:: clj