RosettaCodeData/Task/Associative-array-Creation/PARI-GP/associative-array-creation-2.parigp

7 lines
175 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
mapput(M, "key", "value");
mapput(M, 17, "different value");
mapput(M, "key2", Pi);
mapget(M, "key2") \\ returns Pi
mapisdefined(M, "key3") \\ returns 0
mapdelete(M, "key2");