[EMAIL PROTECTED] wrote:
>
> 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
Change your last three lines to read as follows:
>> c1: 1
== 1
>> c2: 2
== 2
>> the-array/:c1/:c2
== "frog"
-jn-