Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132930 views
License: OTHER
1
Map<Integer, String> d = new HashMap<Integer, String> ();
2
d.put(12, "Martin");
3
d.put(9, "Marie");
4
d.put(18, "Peter");
5
6
String name = d.get(9);
7
// name.equals("Marie")!
8
9