Created
November 26, 2015 11:04
-
-
Save mvniekerk/15503d84d2ae49c48bea to your computer and use it in GitHub Desktop.
Showing the difference between a Java array and a Groovy one
This file contains hidden or 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
int[] array = { 1, 2, 3}; //Java | |
int[] array = [1,2,3] //Groovy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment