Skip to content

Instantly share code, notes, and snippets.

@amalloy
Created February 9, 2011 18:08
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 amalloy/27effcd9c46a0ca6f701 to your computer and use it in GitHub Desktop.
Save amalloy/27effcd9c46a0ca6f701 to your computer and use it in GitHub Desktop.
user> (def l (proxy [java.util.ArrayList] [] (size [] (.get this 0))))
#'user/l
user> (.add l 3)
true
user> (.size l)
3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment