David Rush wrote:
> Is there any way to get to the environment-bindings function if
> you're still using Larceny in R5RS mode?
Are you looking for something like this?
(define (environment-symbols env)
(append (environment-variables env)
(environment-macros env)))
Will