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 );
    }
}
---

Reply via email to