3 lines
117 B
Text
3 lines
117 B
Text
string[] fruit = {"apple", "orange"};
|
|
int length = fruit.length;
|
|
write("The length of the fruit array is ", length);
|