RosettaCodeData/Task/Array-length/Processing/array-length.processing

5 lines
75 B
Text
Raw Normal View History

2023-07-01 11:58:00 -04:00
String[] arr = {"apple", "orange"};
void setup(){
println(arr.length);
}