mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
18 lines
257 B
D
18 lines
257 B
D
module foreach1;
|
|
import std.stdio;
|
|
|
|
void main()
|
|
{
|
|
static arr = [1,2,3,4,5];
|
|
|
|
writef("forward");
|
|
foreach(v;arr) {
|
|
writef(' ',v);
|
|
}
|
|
writef("\nreverse");
|
|
foreach_reverse(v;arr) {
|
|
writef(' ',v);
|
|
}
|
|
writef("\n");
|
|
}
|