Collections Java Tutorial

import java.util.HashMap;
import java.util.Map;
public class Main {
  public static void main(String[] argv) {
    Map map = new HashMap();
    map.put(1, "first");
    map.put(2, "second");
    // map.put(1, 2); <- Syntax error
  }
}