forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
Make
angerangel edited this page Mar 19, 2013
·
1 revision
MAKE type spec
Constructs or allocates the specified datatype.
MAKE is an action value.
- type -- The datatype or an example value (any-type!)
- spec -- Attributes or size of the new value (modified) (any-type!)
#SOURCE
make: make action! [ [
"Constructs or allocates the specified datatype."
type [any-type!] "The datatype or an example value"
spec [any-type!] "Attributes or size of the new value (modified)"
] ]