> Is there any difference between > > set 'some-word func [ ...... > > and > > some-word: func[ .....
If you do both of those inside a context, the first will set the word in the global context; the second will set it inside the context. Using 'set in a context is an easy way to "export" words for public use. --Gregg -- To unsubscribe from the list, just send an email to lists at rebol.com with unsubscribe as the subject.
