SETENV Subroutine
Usage:
SETENV(env, val)
Description:
Use SETENV to set an environment variable. If the environment variable already exists, the existing variable is modified. Otherwise, it is created.
Example:
sub main()
setenv("path", "C:\")
printl(getenv("path")
end sub