Re: C++ to D: Help please

2011-02-24 Thread Jesse Phillips
Well I guess my point was to use a language you are very familiar with to obtain examples. There have been some attempts and such tutorials: http://www.prowiki.org/wiki4d/wiki.cgi?ComingFrom#SpecificLanguage But Java I think is the most thorough and out of date (pre-D1). There is also a porting

Re: C++ to D: Help please

2011-02-24 Thread Tyro[a.c.edwards]
On 2/25/2011 3:33 AM, Jesse Phillips wrote: Well using one language you aren't familiar with to learn another is probably not the best strategy. For one thing C++ uses namespaces and D uses modules. They are both about name-space but are very different approaches. If you want to learn about m

Re: C++ to D: Help please

2011-02-24 Thread Jesse Phillips
%u Wrote: > I have no problems converting small problems. Hence why I'm not > trying to convert small scripts. My problems are in understanding > the inner workings of multimodule programs, how to create them, > create the make file to use in comepiling them, and then since I'm > reading C/C++ (w

Re: C++ to D: Help please

2011-02-23 Thread %u
bearophile, You do have a point there, and I actually expected that response. I would have posted my attempt at implementation, but am unable to transfer info between the computer I'm typing this message on and the one I'm programming on at the moment. I have no problems converting small problems

Re: C++ to D: Help please

2011-02-23 Thread bearophile
%u: > I am hoping that one of you experienced programmers out > there could lend me a hand converting this small program to D. If you show specific problems some people here will try to help. But I think most people are not willing to translate a multi-module C++ program to D for you. If you ar

C++ to D: Help please

2011-02-23 Thread %u
I requested some assistance with operator overlaoding yesterday and I really appreciate the assistance provided. However, trying to incorporate the example just confused me a little more, it does not meld well with the code I translated from the tutorial I am reading. I am hoping that one of you ex