Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save trycf/60e6f6a00698f6a5994cd2c0bf19c222 to your computer and use it in GitHub Desktop.
Save trycf/60e6f6a00698f6a5994cd2c0bf19c222 to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
classInstance = java{
public class class1{
public int execute ()
{
int[] arr;
arr = new int[5];
arr[0] = 10;
arr[1] = 20;
arr[2] = 30;
arr[3] = 40;
arr[4] = 50;
return arr.length;
}
}
}
writeoutput(classInstance.execute())
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment