forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
Construct
angerangel edited this page Mar 15, 2013
·
1 revision
CONSTRUCT block /with object /only
Creates an object with scant (safe) evaluation.
CONSTRUCT is a native value.
- block -- Specification (modified) (block! string! binary!)
-
/with -- Default object
- object (object!)
- /only -- Values are kept as-is
#SOURCE
construct: make native! [ [
"Creates an object with scant (safe) evaluation."
block [block! string! binary!] "Specification (modified)"
/with "Default object" object [object!]
/only "Values are kept as-is"
] ]