Skip to content

Instantly share code, notes, and snippets.

@purplefox
Created July 9, 2014 20:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save purplefox/f1dafb5eade7a058bc5b to your computer and use it in GitHub Desktop.
Save purplefox/f1dafb5eade7a058bc5b to your computer and use it in GitHub Desktop.
jjs> var set = new java.util.HashSet();
jjs> set.add("one");
true
jjs> set.add("two");
true
jjs> set.add("three");
true
jjs> set[0];
null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment