xxxxxxxxxx
void main()
{
import std.algorithm : permutations;
import std.stdio : writeln;
import std.array : array;
[1, 2, 3].permutations.writeln;
[1, 2, 3].permutations.array.writeln;
}