-
-
Save grahamb/2138694 to your computer and use it in GitHub Desktop.
Y U SO VERBOSE JAVA?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"foo": "bar", "baz": "quux"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{foo: 'bar', baz: 'quux'} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment