RosettaCodeData/Task/Array-length/Seed7/array-length.seed7

9 lines
158 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
$ include "seed7_05.s7i";
const array string: anArray is [] ("apple", "orange");
const proc: main is func
begin
writeln(length(anArray));
end func;