Chapter 9: Example 9-3: Initializing the Elements of an Array All at Once
// Learning Processing
// Daniel Shiffman
// http://www.learningprocessing.com
// Example 9-3: Initializing the elements of an array all at once
int[] arrayOfInts = {1,5,8,9,4,5};
float[] floatArray = {1.2,3.5,2.0,3.4123,9.9};
»
No comments yet.








