Module Expressions/Context

This module is undocumented. This is a list of its definitions.

contextGet :: Context -> String -> a

contextGet context name returns the value of the given variable. The result is null if the context has no such variable.

contextPut :: Context -> String -> a -> <Proc> ()

contextPut context name value sets the given variable to the given value.