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
134 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
1answer
218 views

Implicit currying in Scheme with syntax-rules?

Jeffrey Meunier has an implicit Curry macro here, which uses defmacro. I was wondering if someone has ever written this with syntax-rules?
3
votes
1answer
76 views

syntax-rules not completely hygienic?

I understand that syntax-rules is a hygienic macro system, but I do not understand why this happens: (define not (lambda (x) x)) (define-syntax nand (syntax-rules () ((_ a b) (not (and a ...
3
votes
1answer
312 views

Please refactor my macro in Scheme

I am learning hygiene and I tried to make a simple for loop in Scheme. I want to support three kinds of constructs as shown in example below (for i = 1 : (< i 4) : (++ i) (printf ...