RosettaCodeData/Task/Associative-array-Creation/Maxima/associative-array-creation.maxima
2023-07-01 13:44:08 -04: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]]