< Rebol Programming

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"
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.