5 lines
145 B
Text
5 lines
145 B
Text
mapping m = ([ "apple": "fruit", 17: "seventeen" ]);
|
|
write("indices: %O\nvalues: %O\n17: %O\n",
|
|
indices(m),
|
|
values(m),
|
|
m[17]);
|