xxxxxxxxxx
import std.algorithm, std.range, std.stdio;
void main()
{
10.iota.cumulativeFold!((a, b) => a + b).writeln;
}