Skip to content

Instantly share code, notes, and snippets.

View alexmherrmann's full-sized avatar

Alex Herrmann alexmherrmann

View GitHub Profile
public class EZMap<T> {
public static void main(String[] args) {
Map<String,Object> m = hashMap(
bob -> 5,
TheGimp -> 8,
incredibleKoolAid -> "James Taylor",
heyArnold -> new Date()
);
System.out.println(m);
}