[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Macros and anonymous functions
I admitted that "weak" anonymous functions may be a problem when it
comes to macros but on second thought I retract that. By definition when
you use macros you are not using any existing language syntax. For
example:
my_new_construct:
some_code_block()
All we need to do to make this work is to have the my_new_construct
suite be evaluated as if it were a "def" rather than a "lambda".
Paul Prescod