< Rebol Programming
USAGE:
LAUNCH value /reboot /uninstall /link url /quit /secure-cmd /as-is /install
DESCRIPTION:
Launches a new REBOL interpreter process.
LAUNCH is a native value.
ARGUMENTS:
- value -- The command-line arguments (Type: any-string)
REFINEMENTS:
- /reboot -- Reserved
- /uninstall -- Restart with uninstall option
- /link -- Reserved
- url -- (Type: any)
- /quit -- Launch first, then quit
- /secure-cmd -- Reserved
- /as-is -- No quotes around command line argument
- /install -- Restart with install option
SOURCE CODE
launch: native[
"Launches a new REBOL interpreter process."
value [any-string!] "The command-line arguments"
/reboot "Reserved"
/uninstall "Restart with uninstall option"
/link "Reserved"
url
/quit "Launch first, then quit"
/secure-cmd "Reserved"
/as-is "No quotes around command line argument"
/install "Restart with install option"
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.