Rebol Programming/set-env
USAGE:
editSET-ENV var value
DESCRIPTION:
editSets the value of an operating system environment variable.
SET-ENV is a native value.
ARGUMENTS
edit- var -- Variable to set (Type: string)
- value -- Value to set, or NONE to unset it (Type: string none)
SOURCE CODE
editset-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" ]