xxxxxxxxxx
import std.stdio;
import std.meta;
void main()
{
alias A = AliasSeq!("hello", ' ', "world");
writeln(A); // hello world
}