xxxxxxxxxx
import std;
void main()
{
int[3] a = [ 1, 2, 3 ];
writeln(a.reduce!((x, y) => x + y));
writeln(a.fold!((x, y) => x + y));
}