Rebol Programming/launch

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USAGE:[edit | edit source]

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

DESCRIPTION:[edit | edit source]

Launches a new REBOL interpreter process.

LAUNCH is a native value.

ARGUMENTS:[edit | edit source]

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

REFINEMENTS:[edit | edit source]

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

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