跳转到内容

Rebol 编程/启动

来自维基教科书,开放世界中的开放书籍
LAUNCH value /reboot /uninstall /link url /quit /secure-cmd /as-is /install 

启动一个新的 REBOL 解释器进程。

LAUNCH 是一个原生值。

  • value -- 命令行参数(类型:any-string)
  • /reboot -- 保留
  • /uninstall -- 重新启动并使用卸载选项
  • /link -- 保留
    • url -- (类型:any)
  • /quit -- 首先启动,然后退出
  • /secure-cmd -- 保留
  • /as-is -- 命令行参数不带引号
  • /install -- 重新启动并使用安装选项

源代码

[编辑 | 编辑源代码]
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"
]
华夏公益教科书