vote up 2 vote down star
1

As the Wikipedia article explains, begin in Scheme is a library form that can be rewritten using more fundamental forms like lambda.

But how do you rewrite a begin, especially considering the following?

x
===> error: undefined identifier: x
(begin (define x 28) x)
===> 28
x
===> 28
flag

73% accept rate

2 Answers

vote up 3 vote down check

You cannot. The thing is that begin has two roles: one is sequence a bunch of side-effectful expressions, and the other is that it is used to "splice" macro results. The fact that you can use begin with a definition as in the above is a result of this second feature, and you cannot write it yourself.

link|flag
Then why is it considered a"library syntax", and not simply "syntax" in R5RS? I thought you could rewrite library forms using fundamental forms only? – eljenso Nov 5 at 21:46
1  
That's a mistake (together with the wikipedia article). – Eli Barzilay Nov 5 at 22:02
[citation needed] – Javier Nov 5 at 22:16
3  
No, a citation is not needed -- a counter example is sufficient. eljenso's example is such a counter example. – Eli Barzilay Nov 5 at 22:24
vote up 1 vote down

You are still welcome to try writing a version of begin which satisfies its first role: sequencing.

(define-syntax sequencing
  (syntax-rules ()
    [(_ expression) expression]
    [(_ expression expressions ...)
     ((lambda (ignored) (sequencing expressions ...)) expression)]))

Here is the post from which I took that snippet. It provides better context if you are interested, and you might be.

link|flag

Your Answer

Get an OpenID
or

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