* {{Code|map:new()}} creates an empty map.
* {{Code|map:new(())}} creates an empty map.
* {{Code|map:new((map:entry(0, "no"), map:entry(1, "yes")))}} creates a map with the values <code>{ 0: "no", 1: "yes" }</code>.
* <code>map:new(($week, map{ 7: "Unbekannt" }))</code> creates a map with the values <code>{ 0: "Sonntag", 1: "Montag", 2: "Dienstag", 3: "Mittwoch", 4: "Donnerstag", 5: "Freitag", 6: "Samstag", 7: "Unbekannt" }</code>.
* <code>map:new(($week, map{ 6: "Sonnabend" }))</code> creates a map with the values <code>{ 0: "Sonntag", 1: "Montag", 2: "Dienstag", 3: "Mittwoch", 4: "Donnerstag", 5: "Freitag", 6: "Sonnabend" }</code>.