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

7 lines
75 B
D

import std.stdio;
void main()
{
["apple", "orange"].length.writeln;
}