Skip to content

Instantly share code, notes, and snippets.

@sajjadyousefnia
Created April 8, 2018 11:34
Show Gist options
  • Save sajjadyousefnia/ccf3e68707ba5f835619465bf4a7ffb1 to your computer and use it in GitHub Desktop.
Save sajjadyousefnia/ccf3e68707ba5f835619465bf4a7ffb1 to your computer and use it in GitHub Desktop.
val personsHashMap: java.util.HashMap<Int, String> = hashMapOf(1 to "Chike", 2 to "John", 3 to "Emeka")
personsHashMap.put(4, "Chuka")
personsHashMap.remove(2)
print(personsHashMap[1]) // will print Chike
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment