跳转到内容

Rebol 编程/run

来自维基教科书,自由的教科书
RUN file /as suffix 

运行与文件关联的系统应用程序。

RUN 是一个原生值。

  • file -- 要打开的文件(文件、URL)或要运行的命令(字符串)。(类型:文件 url 字符串)
  • /as
    • suffix -- (类型:字符串 文件)

源代码

[编辑 | 编辑源代码]
run: native[
    {Runs the system application associated with a file.} 
    file [file! url! string!] {The file to open (file, URL) or command to run (string).} 
    /as suffix [string! file!]
]
华夏公益教科书