import std.stdio;
void main()
{
auto array = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
// Напечатать только вторую половину
writeln(array[$ / 2 .. $]);
}