Re: D1 D2 discrepancy

2012-01-02 Thread Jesse Phillips
On Sat, 24 Dec 2011 01:45:56 +0100, Łukasz Wrzosek wrote:

 writefln should be replaced with writeln and it works on d2 too.

D1 does not have a writeln function:

http://digitalmars.com/d/1.0/phobos/std_stdio.html


Re: D1 D2 discrepancy

2011-12-23 Thread Trass3r

* Output of the D1 version :
receiver 1 :Hey
receiver 2 :Hey
receiver 1 :Hey


* Output of the D2 version :
receiver 1 :
receiver 2 :
receiver 1 :


Is this a bug or something stupid on my part ?


Looks suspicious. Debug it to see what gets called.


Re: D1 D2 discrepancy

2011-12-23 Thread Łukasz Wrzosek

W dniu 23.12.2011 14:37, Trass3r pisze:

* Output of the D1 version :
receiver 1 :Hey
receiver 2 :Hey
receiver 1 :Hey


* Output of the D2 version :
receiver 1 :
receiver 2 :
receiver 1 :


Is this a bug or something stupid on my part ?


Looks suspicious. Debug it to see what gets called.


writefln should be replaced with writeln and it works on d2 too.