Execute Expression action the same way n times.
enum n = 10; int sum = 0; 10.times!({ sum++; }); assert(sum == n);
See Implementation
Execute Expression action the same way n times.