Tagged Questions

8
votes
3answers
3k views

Sources for learning about Scheme Macros: define-syntax and syntax-rules

I've read JRM's Syntax-rules Primer for the Merely Eccentric and it has helped me understand syntax-rules and how it's different from common-lisp's define-macro. syntax-rules is only one way of ...
6
votes
1answer
130 views

How are vector patterns used in syntax-rules?

I have been writing Common Lisp macros, so Scheme's R5Rs macros are a bit unnatural to me. I think I got the idea, except that I don't understand how one would use vector patterns in syntax-rules: ...
5
votes
3answers
503 views

Scheme Macro for nesting expressions

Can a macro be written in Scheme (with define-syntax, for example) which will take expressions like this: (op a b c d e f g h i j) And yield expressions like this as output? (op (op (op (op (op ...
4
votes
4answers
357 views

What, if any, is wrong with this definition of letrec in Scheme?

R5RS gives proposed macro definitions for library forms of syntax: http://schemers.org/Documents/Standards/R5RS/HTML/r5rs-Z-H-10.html#%_sec_7.3 Which also defines letrec, in a very complicated way, ...
1
vote
1answer
104 views

what's wrong with this define-syntax macro in scheme?

I'm working though SICP and wanted to try out some of the examples in guile. I'm trying the stream examples and wanted an implementation for cons-stream, which I got from this StackOverflow question. ...
0
votes
1answer
52 views

Scheme macro expansion: Nesting let-syntax inside define-syntax

I wish to expand (foo x (f n) (f n) (arbitrary) (f n) ...) into (begin (x 'f n) (x 'f n) (arbitrary) (x 'f n) ...) my attempt is: (define-syntax foo (syntax-rules () ((_ l a ...) ...