foo.scm:
(namespace ("foo#")) (##define define 2) [some code] (my-define ...) define ----
Is there something I can replace [some code] with, so that:
1) I'm still in namespace foo# 2) foo#my-define = ""#define 3) define still has value 2 on the last line
[I'm doing some weird tricks where define does type checking on its args at run time.]
Thanks!