Creating an Array: Difference between revisions

no edit summary
No edit summary
Line 85:
let nbItems = 5 and initialValue = 0 in
make_vect nbItems initialValue
 
 
==[[Java]]==
 
For example for an array of 10 int values:
 
int[] intArray = new int[10];