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