xxxxxxxxxx
import std.algorithm, std.range, std.stdio;
void main()
{
auto arr = ["T1", "T2", "T3", "T4", "T5"];
arr.slide(2).each!writeln;
}