[REBOL] Re: NEVER Mind- fixed my problemRE: plus sign unbound, how to prevent th
From: nitsch-lists::netcologne::de at: 23-Dec-2002 20:37
bryan wrote:
>Disregard last post.
>
>-----Original Message-----
>From: [rebol-bounce--rebol--com] [mailto:[rebol-bounce--rebol--com]] On Behalf
>Of bryan
>Sent: Monday, December 23, 2002 7:57 PM
>To: [rebol-list--rebol--com]
>Subject: [REBOL] plus sign unbound, how to prevent this?
>
>How exactly is it that the plus sign and such comes unbound, so that if
>I have a string "[1 + 2]", convert it to-block and then try to do the
>block the + raises the context error?
>
>And is there a simple way to get around this?
>
yes, use 'load instead of 'to-block. 'to-block only parses the block,
'load parses and binds words to 'system/words .
-volker