跳轉至內容

Rebol 程式設計/退出

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

停止評估並退出直譯器。

QUIT 是一個原生值。

  • /return -- 返回一個值(到作業系統命令列)
    • value -- (型別:整數)

原始碼

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