fork download
  1. import java.util.*;
  2.  
  3. class Tester
  4. {
  5. public static void main (String[] args)
  6. {
  7. Map<String, Integer> map = new HashMap<String, Integer>();
  8. map.put("price", 10);
  9. map.put("quantity", 5);
  10. System.out.println(map);
  11. }
  12. }
Success #stdin #stdout 0.07s 380160KB
stdin
Standard input is empty
stdout
{price=10, quantity=5}