add one more problem in function exercise

This commit is contained in:
Marshall Shen 2013-07-22 10:55:09 -05:00
parent 5e342c81bc
commit 6fb62d5c79

View File

@ -19,6 +19,9 @@
"Even anonymous functions may take multiple arguments"
(= __ (#(+ %1 %2 %3) 4 5 6))
"Arguments can also be skipped"
(= __ (#(* 15 %2) 1 2))
"One function can beget another"
(= 9 (((fn [] ___)) 4 5))