mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
16 lines
148 B
D
16 lines
148 B
D
module foreach6;
|
|
|
|
struct S
|
|
{
|
|
long l;
|
|
float f;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
S[4] arr = void;
|
|
foreach(i,v;arr) {
|
|
v = S(i, i*2.5);
|
|
}
|
|
}
|