Next: iklib syntaxes lambdas star, Up: iklib syntaxes lambdas [Index]
lambda
syntaxesLike lambda
, but allows the specification of the identifier
?who, which is bound, as identifier syntax, to the fluid syntax
__who__
.
(define func (named-lambda it () __who__)) (func) ⇒ it
Like case-lambda
, but allows the specification of the
identifier ?who, which is bound, as identifier syntax, to the
fluid syntax __who__
.
(define func (named-case-lambda it (() __who__))) (func) ⇒ it