import std.stdio, std.algorithm;
void main() {
int[] a = [1,2,3,4,5];
auto r = a.map!( i => writeln(i) );
while(!r.empty) r.popFront();
}
import std.stdio, std.algorithm;
void main() {
int[] a = [1,2,3,4,5];
auto r = a.map!( i => writeln(i) );
while(!r.empty) r.popFront();
}