跳转到内容

Rebol 编程/construct

来自维基教科书,开放世界中的开放书籍
CONSTRUCT block /with object 

创建一个对象,但不评估其规范。

CONSTRUCT 是一个原生值。

  • -- 对象规范块(类型:块)
  • /with -- 提供默认基础对象
    • 对象 -- (类型:对象)

源代码

[编辑 | 编辑源代码]
construct: native[
    {Creates an object, but without evaluating its specification.} 
    block [block!] "Object specification block" 
    /with "Provide a default base object" object [object!]
]

华夏公益教科书