Multiplatform development[DOUBT]

2017-02-20 Thread wiki via Digitalmars-d-learn
A friend of mine asked me a question today if D is multiplatform I particularly believe it is but I wanted to know the opinion of who has already developed the most time in it and even of the developers because I looked for some cisa on the net about such subject and did not find anything that

Re: Error reading char in read

2017-02-17 Thread wiki via Digitalmars-d-learn
On Friday, 17 February 2017 at 18:57:55 UTC, Ali Çehreli wrote: On 02/17/2017 07:48 AM, Jean Cesar wrote: import std.stdio; import std.string; auto read(C)(ref C c, char[80] message) if (isSomeChar!C) { writef("\n\t%s: ", message); c = strip(readf()); readf(" %s", ); return c;

Re: Converting multiple inheritance code into C ++ for D language

2017-02-18 Thread wiki via Digitalmars-d-learn
On Saturday, 18 February 2017 at 09:33:25 UTC, biozic wrote: On Friday, 17 February 2017 at 23:35:33 UTC, Jean Cesar wrote: On Friday, 17 February 2017 at 23:31:41 UTC, Adam D. Ruppe wrote: On Friday, 17 February 2017 at 23:11:25 UTC, Jean Cesar wrote: so I changed the code to use interface