// Hello, world! program in pure D, that prints 5 times

import std.stdio;
void main() {
for( int a = 1; a < 6; a = a + 1 ) {
    writeln("Hello, world!"); /* prints "Hello, world!" 5 times like this:
    Hello, world!
    Hello, world!
    Hello, world!
    Hello, world!
    Hello, world!
    */
    }
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: