RosettaCodeData/Task/Array-length/Asymptote/array-length.asymptote

4 lines
117 B
Text
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
string[] fruit = {"apple", "orange"};
int length = fruit.length;
write("The length of the fruit array is ", length);