RosettaCodeData/Task/Associative-array-Creation/Maxima/associative-array-creation.maxima
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

7 lines
120 B
Text

/* No need to declare anything, undeclared arrays are hashed */
h[1]: 6;
h[9]: 2;
arrayinfo(h);
[hashed, 1, [1], [9]]