Use :c1

>> x: array/initial [3 3]"frog"
== [["frog" "frog" "frog"] ["frog" "frog" "frog"] ["frog" "frog" "frog"]]
>> c1: 1 c2: 1
== 1
>> x/:c1/:c2
== "frog"
>>
Russell [EMAIL PROTECTED]
----- Original Message ----- 
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, January 12, 2000 8:45 AM
Subject: [REBOL] arrays


> The code:
> the-array: array/initial [5 5] "frog"
> the-array/1/1
> c1:1
> c2:2
> the-array/c1/c2
> The results
> >> the-array: array/initial [5 5] "frog"
> == [["frog" "frog" "frog" "frog" "frog"] ["frog" "frog" "frog" "frog" "f
> 
> rog"] ["frog" "frog" "frog" "frog" "frog"] ["frog" "frog" "...
> >> the-array/1/1
> == "frog"
> >> c1:1
> == c1:1
> >> c2:2
> == c2:2
> >> the-array/c1/c2
> ** Script Error: Invalid path value: c1.
> ** Where: the-array/c1/c2
> >>
> How do I make a path that will work here for c1 and c2
> Larry
> 

Reply via email to