Skip to content

Instantly share code, notes, and snippets.

@ramadani
Last active April 7, 2017 08:11
Show Gist options
  • Save ramadani/6fb81824d65e179f359c1c5634dd3512 to your computer and use it in GitHub Desktop.
Save ramadani/6fb81824d65e179f359c1c5634dd3512 to your computer and use it in GitHub Desktop.
Javan Array Study Case 8
public void case8() {
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");
users.keySet();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment