xxxxxxxxxx
import core.simd;
import std.stdio;
version(D_AVX2)
{
string hello()
{ return("This is AVX2"); }
}
else
{ return("Sorry, no AVX2"); }
void main()
writeln(hello);