/arrayDeclarationExample.java Secret
Last active
March 31, 2020 16:08
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
double[] example = new double[3]; | |
example[0] = 1.1; | |
example[1] = 2.2; | |
example[2] = 3.3; | |
char[] name = {'T','e','s','t'}; | |
String[] test = {"Craft","Mine","Sans"}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment