Phobos vs Tango! What's your opinion?

Dan murpsoft at hotmail.com
Wed Apr 18 08:13:30 PDT 2007


As I just said in a different thread.  Tango has this OO gleam in it's eye.  It's implementing classes for the craziest of things.  Strings don't need a class!  Implementing a class to store an array is *hugely* wasteful.

Especially since you can already use:

char[] foo(char[] s){
 s ~= " world";
}

char[] myS = "hello";

myS.foo();

Classes are the Microsoft Windows of the programming world; opague, costly, slow, and they have burdensome licensing.



More information about the Digitalmars-d mailing list