Is there a shorthand in scheme for ((lambda () ))
For example, instead of
((lambda ()
(define x 1)
(display x)))
I would love to be able to do something like
(empty-lambda
(define x 1)
(display x))
|
feedback
|
|
The usual idiom for that is
which you can of course turn into a quick macro:
| |||||||
feedback
|
|
Racket provides the
| |||
|
feedback
|
| ||||
|
feedback
|