Arc Forumnew | comments | leaders | submitlogin
1 point by goodbyejim 6076 days ago | link | parent

The reciprical function in the middle of pg 15 becomes:

arc> (def reciprocal(n) (if (is n 0) "oops!" (/ 1 n)) )

which again reduces the number of keywords and pairs of braces by one, because there is no longer a need to state that what follows def is a lambda.

That makes sense. What else would it be?