[REBOL] Re: Read this CGI? (solved)
From: sunandadh:aol at: 19-Apr-2002 17:44
Jason
> > The error came from the fact that I was using the word 'in as a variable
> > which replaced the native value of 'in effectively disabling many
> functions.
> > ;-))
>
> So what do you all think are good REBOL strategy against such problems?
Put this in user.r:
protect-system
It stops you accidentally redefining any system word.
>> in: 100
** Script Error: Word in is protected, cannot modify
** Near: in: 100
Sunanda