Skip to content

Instantly share code, notes, and snippets.

@jnraine
Created March 20, 2012 16:59
Show Gist options
  • Save jnraine/2138205 to your computer and use it in GitHub Desktop.
Save jnraine/2138205 to your computer and use it in GitHub Desktop.
Y U SO VERBOSE JAVA?
{"foo": "bar", "baz": "quux"}
{foo: 'bar', baz: 'quux'}
// Let's build a fun map object!
Map<String, String> map = new HashMap<String, String>();
map.put("foo", "bar");
map.put("baz", "quux");
// By the time we get here, we've forgotten what we were doing
@dayglojesus
Copy link

Could be worse, could be ObjC.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment