Rebol Programming/set-env
USAGE:
SET-ENV var value
DESCRIPTION:
Sets the value of an operating system environment variable.
SET-ENV is a native value.
ARGUMENTS
- var -- Variable to set (Type: string)
- value -- Value to set, or NONE to unset it (Type: string none)
SOURCE CODE
set-env: native[
{Sets the value of an operating system environment variable.}
var [string!] "Variable to set"
value [string! none!] "Value to set, or NONE to unset it"
]