Tagged Questions
The hygiene tag has no wiki summary.
25
votes
5answers
878 views
Collection of Great Applications and Programs using Macros
I am very very interested in Macros and just beginning to understand its true power. Please help me collect some great usage of macro systems.
So far I have these constructs:
Pattern Matching:
...
12
votes
6answers
491 views
Can someone explain the concept of 'hygiene' to me (I'm a scheme programmer)?
So... I'm new to scheme r6rs, and am learning macros. Can somebody explain to me what is meant by 'hygiene'?
Thanks in advance.
6
votes
1answer
326 views
What is it about a single namespace that leads to unhygienic macros? (in LISP)
Some claim that a single namespace in LISP leads to unhygienic macros.
http://community.schemewiki.org/?hygiene-versus-gensym
http://www.nhplace.com/kent/Papers/Technical-Issues.html
What precisely ...
4
votes
2answers
743 views
How do I write a hygienic Ruby mixin?
Say I'm writing a mixin module that adds functionality to a third-party class. Obviously some of the methods and instance variables I want to make accessible to the third-party class and its clients. ...
2
votes
1answer
47 views
Scheme syntax-rules - Difference in variable bindings between (let) and(define)
The R5RS spec states that as part of the requirements for a macro defined using syntax-rules:
If a macro transformer inserts a free reference to an identifier, the reference refers to the binding ...
2
votes
3answers
511 views
Are insomnia, sleep debt, short sleep more prevalent among programmers? [closed]
I know that some people are unable to function past a bedtime of, say, 10 or 11pm, and really need their 8 hours' sleep each night. I'm even married to someone like that.
I'm at the opposite end of ...
1
vote
1answer
220 views
How to make just part of a macro hygienic
I'd like to have a version of lambda, called lambda-r, from within which you can return. An example:
(+ ((lambda-r ()
(return 1)
2)) 5)
This would give the value 6. Although you might ...