The D Programming Language

From D Wiki
Revision as of 23:43, 21 November 2012 by Dnewbie (talk | contribs)
Jump to: navigation, search

MediaWiki has been successfully installed.

Consult the User's Guide for information on using the wiki software.

Getting started

import std.stdio;

int main(string[] args)
{
    writeln("Hello, world!");
    return 0;
}