phobos/test/betterC/algorithm.d
2018-07-20 18:33:45 +02:00

4 lines
114 B
D

extern(C) void main() {
import std.algorithm, std.range;
assert(100.iota.stride(2).take(10).sum == 90);
}