Contents
Indexes:
Macro \
Part of:
package metabang.utilities
(
\
&body < forms > )
Similar to Haskell's \ operator. Typical usage:
(\\ x y = * x y)
is like
(lambda (x y) (* x y)).
You can also just use Lisp forms on the right of the =, in which case no extra
levels of parens are added.