You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
:- module(environment, /*...*/).%% initialize global environment exactly onceterm_expansion((:->establish_context), (:->context_established))
:-
write('establishing context, you should only see this once!'),
empty_assoc(Assoc),
bb_put(global_context, Assoc).
:->establish_context.
Is there any reason to consult a module multiple times? I imagine it could be consulted and then reference shared on subsequent look-ups, even across files.
The text was updated successfully, but these errors were encountered:
elsewhere...
😬
Is there any reason to consult a module multiple times? I imagine it could be consulted and then reference shared on subsequent look-ups, even across files.
The text was updated successfully, but these errors were encountered: