Huh? If you wanted to print an array, then
---
void main()
{
int n=1;
while(n<=10_001)
{
v~=n;
n+=5000;
}
foreach(c;v)
{
writeln( " current n is ",c );
}
}
---
- How to use Fiber? FrankLike via Digitalmars-d-learn
- Re: How to use Fiber? Kagamin via Digitalmars-d-learn
- Re: How to use Fiber? Dejan Lekic via Digitalmars-d-learn
- Re: How to use Fiber? FrankLike via Digitalmars-d-learn
