Make it clearer what %2 is about

This commit is contained in:
Colin Jones 2017-05-10 08:32:25 -05:00
parent 9b3efbb026
commit e74a2664f0
No known key found for this signature in database
GPG Key ID: BB1DBD3616F1DDB9
2 changed files with 3 additions and 3 deletions

View File

@ -90,7 +90,7 @@
10
60
15
30]
"AACC"]
"___" [+
*
(fn [f] (f 5))

View File

@ -23,7 +23,7 @@
(= __ (#(+ %1 %2 %3) 4 5 6))
"Arguments can also be skipped"
(= __ (#(* 15 %2) 1 2))
(= __ (#(str "AA" %2) "bb" "CC"))
"One function can beget another"
(= 9 (((fn [] ___)) 4 5))