Earlier quoted context omitted.
I think one of the very good features of D is that it provides a lot of infrastructure that helps with lots of little generic things -- things that are not really needed in the language, but help reduce the amount of code you write or simplify common actions you take. It seems like Walter (and all the other contributors) have distilled their experience writing programs into creating a language that helps a lot with s…
Good list. Another good feature: Interfacing to C is somewhat easy at least for the basics. (I haven't looked at advanced cases yet, but maybe someone else can comment on that.) https://dlang.org/spec/interfaceToC.html This is a great feature IMO, because it allows you to (re)use the huge number of existing C libraries out there. Here is a simple example: Calling a simple C function from D - strcmp: https://jugad2.bl…
Porting the text pager from Python to D (DLang)
https://jugad2.blogspot.in/2017/04/porting-text-pager-from-p...