What's the syntax to set immutable hashmap contents on initialization?
For example, if I was willing to hardcode an array, I'd write:
val a = Array (0, 1, 2, 3)
What's the analogue for immutable hashmaps (say I want it to contain 0->1 and 2->3 pairs) (in Scala 2.8)?