Hmm! I have to return `Map<String, String?>`...
# getting-started
h
Hmm! I have to return
Map<String, String?>
instead of
Map<String, String>
here. How can I make it return
Map<String, String>
?
Copy code
fun blah() : Map<String, String> {
    return mapOf("a" to null, "b" to "foo").filter{ it.value != null }
}