[plt-scheme] How best to iterate arguments to a macro?
Grant Rettke wrote:
> On 10/20/07, Grant Rettke <grettke at acm.org> wrote:
>
>>> If you don't want to have recursive macro expanding, here's another
>>> solution:
>>>
> Sorry that didn't come out quite right.
>
> What are the implications of recursive macro expansion?
>
Recursive macro expansion means like in your definition of 'property',
the expanded code still contains call to 'property', which needs to be
expanded again.
Implication? Other than a small overhead in compile time, none.
Chongkai