Also I expected a result from:
z: make object! [b: 0 c: 1 d: 2]
probe context? z/1
But I get an error
*** Script Error: cannot access 1 in path z/1
*** Where: context?
*** Stack: probe
>>
context?
>> z: make object! [b: 0 c: 1 d: 2]
== make object! [
b: 0
c: 1
d: 2
]
>> w: words-of z
== [b c d]
>> w/1
== b
>> context? w/1
== make object! [
b: 0
c: 1
d: 2
]
@moliad
Yes, we have another way
>> z: make object! [b: 0 c: 1 d: 2]
>> probe pick third z 1
b:
== b: