Rebol Programming/get-env
USAGE:
GET-ENV var
DESCRIPTION:
Gets the value of an operating system environment variable.
GET-ENV is a native value.
ARGUMENTS
- var -- Variable to lookup (Type: string)
SOURCE CODE
get-env: native[
{Gets the value of an operating system environment variable.}
var [string!] "Variable to lookup"
]