RosettaCodeData/Task/Array-length/D/array-length-2.d

7 lines
75 B
D
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
import std.stdio;
void main()
{
["apple", "orange"].length.writeln;
}