parameterize[syntax] parameterize ((param val) ...) exp1 exp2 ...
SRFI-39, ChezScheme, Chicken, MzScheme, Gauche,
SISC, STklos:
evaluates expressions with binding parameters
params to the vals. It's like fluid-let for parameters.
Guile has with-fluids*, which does similar thing.
See also make-parameter.
|