[REBOL] Re: basics: meaning and uses of make object! vs. context
From: joel:neely:fedex at: 10-Jun-2002 10:35
Hi, Jason,
Jason Cunliffe wrote:
> Please can anyone provide an introductory explanation of the
> difference between "make object!" and "context"?
>
Merely the amount of typing.
>> source context
context: func [
"Defines a unique (underived) object."
blk [block!] "Object variables and values."
][
make object! blk
]
This is another example along the lines of the TO-FOO vs. MAKE FOO
thread.
-jn-