Something like this: ``` val readOnlyMap: Map&...
# codereview
d
Something like this:
Copy code
val readOnlyMap: Map<String, String> = with(HashMap<String, String>()) {
        put("first", "john")
        put("last", "doe")
        this
    }