Hacker News new | ask | show | jobs
by catacombs 2329 days ago
D is an amazing language. But what eventually put me off is the lack of documentation for installing and linking libraries in the compilers.
1 comments

This is a bit perplexing. Libraries don't need to be installed, you simply put them in a directory, add a path to it in the command to the compiler, and list the library on the command to the compiler.

Just as you would for C and C++.

Other languages may need libraries to be installed, but not D.

Just like in Java