Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Python
m.update({k: v})
m[k] = v

If m[k] already exists, then it is overwritten.
(assoc m k v)

Returns a new map.

New implementation...