Last active
April 7, 2017 08:05
-
-
Save ramadani/45cbe6ac2f8799f313518d20ab27467a to your computer and use it in GitHub Desktop.
Javan Array Study Case 9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void case9() { | |
Map<String, String> users = new LinkedHashMap<String, String>(); | |
users.put("[email protected]", "Adimas Lutfi Wicaksono"); | |
users.put("[email protected]", "Salman Alfarisi"); | |
users.put("[email protected]", "Muhammad Sholeh"); | |
users.put("[email protected]", "Yadi Cahyadi"); | |
users.put("[email protected]", "Maya Maulani"); | |
System.out.println(users.values()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment