Built-in map type (continued)
Examples
Expressions
{string: number} # Empty map
{string: number "foo": 1, "bar": 2} # With entries
{string: number ...xs, "foo": 1} # Insertion
{string: number ...xs, "foo"} # Deletion
{string: number ...xs, ...ys} # Merging
# Indexing
if x = xs["foo"] {
x
} else {
error("key not found")
}