RosettaCodeData/Task/Associative-array-Creation/Maxima/associative-array-creation.maxima

8 lines
120 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
/* No need to declare anything, undeclared arrays are hashed */
h[1]: 6;
h[9]: 2;
arrayinfo(h);
[hashed, 1, [1], [9]]