mirror of
https://github.com/dlang/phobos.git
synced 2025-04-29 22:50:38 +03:00
4 lines
114 B
D
4 lines
114 B
D
extern(C) void main() {
|
|
import std.algorithm, std.range;
|
|
assert(100.iota.stride(2).take(10).sum == 90);
|
|
}
|