environment
-- r7rs
Definition procedure
;
environment
(from vonuvoli
);Procedure variants:
(() -> (eval-environment))
eval-environment
;((eval-environment-import |1...|) -> (eval-environment))
eval-environment-import
;...
-- at least one time;eval-environment
;scheme:eval
-- (scheme eval)
;scheme
-- (scheme)
;(environment list_1 ...)
This procedure returns a specifier for the environment that results by starting with an empty environment and then importing each
list
, considered as an import set, into it. (See section on libraries for a description of import sets.) The bindings of the environment represented by the specifier are immutable, as is the environment itself.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.