setenv
setenv — sets an environment variable for the current process.
setenv (envar, value)
envarThe name of the environment variable to set.
valueThe string value for this environment variable.
This function sets an environment variable for the current process. Both
arguments are strings. The value of an environment variable can be acquired
using the function getenv.
Gamma>setenv("high", "40");tGamma>getenv("high");"40"Gamma>low = 20;20Gamma>getenv("low");nilGamma>