vote up 11 vote down star
2

I've decided to learn D, and I'm wondering which standard library I should use. Should I use Phobos or Tango? What are the pros and cons of each?

flag

Also, take a look here: <stackoverflow.com/questions/289087/…; – dirkgently Mar 28 at 22:36

4 Answers

vote up 9 vote down check

Tango. It's more object-oriented where appropriate, it includes containers (like STL or Java Collections), it's got an active development team, it has more momentum (it may soon be incorporated into the official compiler), and it's got real documentation, including Learn to Tango with D.

It looks like Tango may soon be incorporated into Walter's releases.

link|flag
vote up 5 vote down

Phobos 1* vs Tango

link|flag
I've added human readable title to the link – J.F. Sebastian Mar 28 at 22:51
@FeepingCreature, might I suggest adding that document somewhere on Wiki4D, or as a page in the "D Programming Language" Google group? – he_the_great Mar 29 at 22:17
vote up 2 vote down

I've had little experience with both (kinda ..)

Phobos is more flat and python-like, but quite incomplete.

Tango is more Java-like, it makes simple things complicated.

I personally prefer to go with phobos, unless you need a library that depends on Tango (such as DWT).

link|flag
1  
One thing I hate about Tango is that it made itself incompatible with Phobos – hasen j Mar 28 at 23:13
vote up 2 vote down

If you need to use D2 then phobos is what you should use for now but tango for D2 is in development.

tangobos allows to use tango and phobos together at the same time. In D2 both work together anyway as they both make use of the separate druntime.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.