Demos, samples and proof-of-concept code in D

d

Solution

You can take a look at the Articles section at the website of the D Programming Language, you will find what you a looking for.

Just for completeness, i have included direct links to some of the articles here:

- Memory management in the D Programming Language

- Exception safety in the D Programming Language

- Templates in the D Programming Language

While the title of these links seem like articles about the usual boring concepts that all mainstream programming languages adopt, you might get surprised anyways.

I am aware that these articles are not strictly 'demos', but I am fairly certain that they will give you the knowledge you were looking for.

Problem

I've been looking at the D programming language recently and I'm curious if there are any demos, sample applications, or proof-of-concept code written in it. I want some code that demonstrates situations where D is particularly elegant or advantageous. There's dsource.org of course, but the projects hosted there are full-on applications. I'm looking for more "documentation-like" examples.

Original source