跳转到内容

Rebol 编程/make

来自维基教科书,自由的教科书,自由的世界
MAKE type spec 

构造并返回一个新值。

MAKE 是一个动作值。

  • type -- 数据类型或示例值。 (类型:any-type)
  • spec -- 新值的属性。 (类型:any-type)

源代码

[编辑 | 编辑源代码]
make: native[
    "Constructs and returns a new value." 
    type [any-type!] "The datatype or example value." 
    spec [any-type!] "The attributes of the new value."
]
华夏公益教科书