RosettaCodeData/Task/Array-length/Seed7/array-length.seed7
2023-07-01 13:44:08 -04:00

8 lines
158 B
Text

$ include "seed7_05.s7i";
const array string: anArray is [] ("apple", "orange");
const proc: main is func
begin
writeln(length(anArray));
end func;