xxxxxxxxxx
import std.stdio, std.container;
void main(string[] args)
{
auto arr = make!(Array!int)(1, 2, 3);
writeln(arr);
writeln(arr[]); // slice
}