Concept Flow - Map creation (mapOf, mutableMapOf)
Start
Choose map type
Create read-only map
Create changeable map
Add key-value pairs
Use map
End
You start by choosing which map to create: an immutable map with mapOf or a mutable map with mutableMapOf. Then you add key-value pairs and use the map.