9 lines
112 B
D
9 lines
112 B
D
|
|
import std.stdio;
|
||
|
|
|
||
|
|
int main()
|
||
|
|
{
|
||
|
|
auto fruit = ["apple", "orange"];
|
||
|
|
fruit.length.writeln;
|
||
|
|
return 0;
|
||
|
|
}
|