Tagged Questions
The syntax-rules tag has no wiki summary.
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 ...
7
votes
9answers
670 views
How can I closely achieve ?: from C++/C# in Python?
In C# I could easily write the following:
string stringValue = string.IsNullOrEmpty( otherString ) ? defaultString : otherString;
Is there a quick way of doing the same thing in Python or am I ...
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
1answer
206 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?
4
votes
5answers
1k views
Emacs Lisp syntax highlighting
I want to write a syntax highlighting extension for Emacs, but I Googling of variations on "emacs syntax highlight tutorial" have all failed. How do I go about learning how to write an Emacs ...
3
votes
1answer
65 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
311 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 ...
1
vote
3answers
488 views
What does the “|” sign mean in Python?
This question originally asked (wrongly) what does "|" mean in Python, when the actual question was about Django. That question had a wonderful answer by Triptych I want to preserve.