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"
      ]
      
      Last modified on 27 October 2012, at 22:07