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?