跳转到内容

Rebol 编程/wait

来自维基教科书,开放世界中的开放书籍
WAIT value /all 

等待一段时间、端口或两者。

WAIT 是一个原生值。

  • value -- (类型:数字 时间 端口 块 无)
  • /all -- 在块中返回所有事件

源代码

[编辑 | 编辑源代码]
wait: native[
    "Waits for a duration, port, or both." 
    value [number! time! port! block! none!] 
    /all "Returns all events in a block"
]
华夏公益教科书