跳轉到內容

Rebol 程式設計/q

來自華夏公益教科書,開放的書籍,開放的世界
Q /return value 

停止評估並退出直譯器。

Q 是一個原生值。

  • /return -- 返回一個值(到 OS 命令 shell)
    • -- (型別:整數)

原始碼

[編輯 | 編輯原始碼]
q: native[
    "Stops evaluation and exits the interpreter." 
    /return "Returns a value (to OS command shell)" 
    value [integer!]
]
華夏公益教科書