example was missing function parameter name

This commit is contained in:
Christopher Browne 2013-04-08 17:01:12 -04:00
parent d7e8dd2a91
commit 1c14a69fc9

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!