How can find all functions and bounded symbols in an “environment”
问题 I am using a softer who has a build-in scheme interpreter. I know the "environment" name is (the-environment). How can I find all the functions and symbols in the environment ? (define p (open-output-file "d:/test.txt")) (display (the-environment) p) can this will display all the functions ? Thanks in advance. Joe 回答1: As Eli Barzilay pointed out, whether or not you can reflectively find all the names bound in an environment depends on which implementation of Scheme you are using. I infer