Rebol Programming/get-env

USAGE:Edit

GET-ENV var 

DESCRIPTION:Edit

Gets the value of an operating system environment variable.

GET-ENV is a native value.

ARGUMENTSEdit

  • var -- Variable to lookup (Type: string)

SOURCE CODEEdit

get-env: native[
    {Gets the value of an operating system environment variable.} 
    var [string!] "Variable to lookup"
]