Re: Writeln does not prints if array has more than 500 elements

2015-06-10 Thread kerdemdemir via Digitalmars-d-learn
I am running DMD on windows, my DMD version is DMD32 V2.067.1. It might be because I installed 32bit version on 64bit windows.

Re: Writeln does not prints if array has more than 500 elements

2015-06-10 Thread jklp via Digitalmars-d-learn
On Wednesday, 10 June 2015 at 21:49:56 UTC, kerdemdemir wrote: == NOTHİNG PRINTS What am I doing wrong? Which OS, which terminal ?

Writeln does not prints if array has more than 500 elements

2015-06-10 Thread kerdemdemir via Digitalmars-d-learn
Hi Following code works int[] peopleMoney = iota(0, 500, 1).array(); writeln(peopleMoney.map!(a = to!string(a)).joiner( )); = 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 ... It writes the contents to std.output as expected. But if I change 500 to 600 nothing is

Re: Writeln does not prints if array has more than 500 elements

2015-06-10 Thread Ali Çehreli via Digitalmars-d-learn
On 06/10/2015 02:49 PM, kerdemdemir wrote: Hi Following code works int[] peopleMoney = iota(0, 500, 1).array(); writeln(peopleMoney.map!(a = to!string(a)).joiner( )); = 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 ... It writes the contents to std.output as expected.