In R7RS or chibi-scheme, is there a function I can call to get a list of symbols containing all bindings in the current scope?
As a comparison, in Python, I can use functions globals()
and locals()
to see what names are available in the current scope.
I'm learning scheme and I think it would be pretty useful for exploring the language if a feature like that were available.