Skip to content

Instantly share code, notes, and snippets.

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 trycf/6be3067a5e270ca89fe0dd09fca6eada to your computer and use it in GitHub Desktop.
Save trycf/6be3067a5e270ca89fe0dd09fca6eada to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
books = [
"Pilgrim at Tinker Creek",
"Long Day's Journey into Night",
"We are in a Book!",
"A Confederacy of Dunces",
"Pride and Prejudice"
];
writeDump(books);
collection = createObject('java','java.util.Collections');
collection.Rotate(books,-1);
writeDump(books);
collection.Rotate(books,-1);
writeDump(books);
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment