Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save trycf/ead473663f485181531656f58c80ee41 to your computer and use it in GitHub Desktop.
Save trycf/ead473663f485181531656f58c80ee41 to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
myList = createObject('java', 'java.util.ArrayList').init();
myList.add("foo");
myList.add("bar");
myList.add("baz");
i = 0;
writedump( myList.get( i+1 ));
(i+1).getClass().getNamer()
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment