Visual D 0.3.29 features C++ to D conversion wizard

bearophile bearophileHUGS at lycos.com
Sat Dec 3 21:30:40 PST 2011


Rainer Schuetze:

> http://www.dsource.org/projects/visuald/wiki/Tour/CppConversion
> There is also a command line version available for those not working 
> with Visual Studio.

It seems a nice tool.

If I try it on this C++ code:


enum Foos { A, B };
char *Colors[] = {"red", "blue", "green"};
int main() {
    return 0;
}



It outputs:


module test;

enum Foos { A, B };
char *Colors[] = {"red", "blue", "green"};
int main() {
    return 0;
}


Bye,
bearophile


More information about the Digitalmars-d-announce mailing list