Rebol 编程/set-env
外观
< Rebol 编程
SET-ENV var value
设置操作系统环境变量的值。
SET-ENV 是一个原生值。
- var -- 要设置的变量(类型:字符串)
- value -- 要设置的值,或 NONE 以取消设置它(类型:字符串无)
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" ]