Created
May 20, 2022 22:20
-
-
Save trycf/60e6f6a00698f6a5994cd2c0bf19c222 to your computer and use it in GitHub Desktop.
TryCF Gist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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