Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] UNSET

From: ptretter:norcom2000 at: 14-Jan-2001 19:06

Does UNSET? current have a bug. Look at the following:
>> unset 'a >> print a
** Script Error: a has no value. ** Where: print a
>> blablablah: 2
== 2
>> unset 'blablablah >> print blablablah
** Script Error: blablablah has no value. ** Where: print blablablah
>> unset? 'blablablah
== false
>> print blablablah
** Script Error: blablablah has no value. ** Where: print blablablah
>>
hmmm..... I'm scratching my head.... Hopefully this is a bug. Now this.
>> not unset? 'blablablah
== true
>> value? 'blablablah
== false
>> value? blablablah
** Script Error: blablablah has no value. ** Where: value? blablabla Any thoughts... Paul Tretter