Hello,
Waaay back on Sat, Sep 5, 2009 at 9:51 PM, Aziz said:
> Currently, Ikarus allows you to attach arbitrary values to identifiers
> at expansion time, but it does not allow you to do that and at the
> same time have the identifier be usable as a variable/macro. I have
> not finalized my thoughts about this, but it's coming any-time-now.
Chez Scheme has support for compile-time values and properties:
http://scheme.com/csug8/syntax.html#./syntax:h4
I recently used this to experiment with compile time dispatch:
http://gist.github.com/585469
http://gist.github.com/631450
Ed