(String[] args)
| 33 | return set; |
| 34 | } |
| 35 | public static void main(String[] args) { |
| 36 | SlowMap<String,String> m= new SlowMap<>(); |
| 37 | m.putAll(Countries.capitals(8)); |
| 38 | m.forEach((k, v) -> |
| 39 | System.out.println(k + "=" + v)); |
| 40 | System.out.println(m.get("BENIN")); |
| 41 | m.entrySet().forEach(System.out::println); |
| 42 | } |
| 43 | } |
| 44 | /* Output: |
| 45 | CAMEROON=Yaounde |