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

[REBOL] Bug in 'use? Re:(10)

From: agem:crosswinds at: 25-Jul-2000 15:56

[rebol[author: "Volker"] {seems 'make does no deep binding? without bug this should set 'b in object-context too (hopefully)?} unset 'b a: make object! [if not value? 'b [b: "a bee!"]] b a/b ]
>> unset 'b >> a: make object! [if not value? 'b [b: "a bee!"]] >> b
== "a bee!"
>> a/b
** Script Error: Invalid path value: b. ** Where: a/b