xxxxxxxxxx
import std.range;
import std.algorithm;
import std.stdio;
void main()
{
auto x = new int[3][2];
x.transversal(0).fill(3);
writeln(x);
}