 |
HashMap \ Language (API) \ Processing 2+
import java.util.Map; // Note the HashMap's "key" is a String and "value" is an Integer HashMap hm = new HashMap(); // Putting key-value pairs in the HashMap hm.put("Ava", 1); hm.put("Cait", 35); hm.put("Casey", 36); // Using an ...
processing.org |
 |