We revisit the first part of the above example and print the elements
out using the dual iteration.
> A := AssociativeArray();
> A[1/2] := 7;
> A[3/8] := "abc";
> A[3] := 3/8;
> for k -> v in A do k, v; end for;
1/2 7
3/8 abc
3 3/8
[Next][Prev] [_____]
[Left] [Up] [Index] [Root]