[REBOL] Re: Backwards Navigation on path
From: ammoncooke:ya:hoo at: 12-Oct-2001 16:39
----- Original Message -----
From: "Cyphre" <[cyphre--seznam--cz]>
To: <[rebol-list--rebol--com]>
Sent: Friday, October 12, 2001 3:12 AM
Subject: [REBOL] Re: Backwards Navigation on path
<Snip>
> I think this should be:
>
> >> a: make object! [
> [ b: make object! [
> [ c: "object"
> [ ]
> [ d: make object! [
> [ b: make object! [
> [ c: "second object"
> [ ]
> [ e: make object! [
> [ x: does [do bind [a/b/c] 'a]
> [ ]
> [ ]
> [ ]
> >> a/d/e/x
> == "object"
> >> a/b/c
> == "object"
> >> a/b/c: "test"
> == "test"
> >> a/d/e/x
> == "test"
> >>
>
You're Awesome! Thanks!
Ammon