USAGE: edit

LAUNCH value /reboot /uninstall /link url /quit /secure-cmd /as-is /install 

DESCRIPTION: edit

Launches a new REBOL interpreter process.

LAUNCH is a native value.

ARGUMENTS: edit

  • value -- The command-line arguments (Type: any-string)

REFINEMENTS: edit

  • /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 edit

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"
]