> T := table( [ "a" = 1, "b" = 2, ("c","d") = 3 ] ): > for i in indices( T ) do print( i, T[ op( i ) ] ) end: ["a"], 1 ["b"], 2 ["c", "d"], 3