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))
link|improve this question

feedback

4 Answers

up vote 9 down vote accepted

The usual idiom for that is

(let ()
  (define x 1)
  (display x))

which you can of course turn into a quick macro:

(define-syntax-rule (block E ...) (let () E ...))
link|improve this answer
Ah perfect. Thanks! – Cam Oct 18 '11 at 3:26
I thought the obvious answer would be to use begin, like: (begin (define x 1) (display x)) Turns out to be obvious and wrong, see stackoverflow.com/questions/1683796/…. – Shannon Severance Oct 18 '11 at 21:11
+1 for both let and define. beautiful. – djhaskin987 Oct 19 '11 at 14:30
feedback

Why not just

(let
    ((x 1))
    (display x))
link|improve this answer
feedback

Racket provides the block form, which works like this:

#lang racket
(require racket/block)
(block
 (define x 1)
 (display x))
link|improve this answer
feedback
(define-syntax empty-lambda
  (syntax-rules ()
    ((empty-lambda body ...)
      ((lambda () body ...)))))
link|improve this answer
Yes I realize that but I wanted something built-in. Thanks though! – Cam Oct 18 '11 at 3:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.