Rebol Programming/make

USAGE:Edit

MAKE type spec 

DESCRIPTION:Edit

Constructs and returns a new value.

MAKE is an action value.

ARGUMENTS:Edit

  • type -- The datatype or example value. (Type: any-type)
  • spec -- The attributes of the new value. (Type: any-type)

SOURCE CODEEdit

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."
]