Sandbox

From D Wiki
Revision as of 00:14, 22 November 2012 by Dnewbie (talk | contribs) (Created page with "==Hello, world!== <syntaxhighlight lang="D">import std.stdio; int main(string[] args) { writeln("Hello, world!"); return 0; }</syntaxhighlight>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Hello, world!

import std.stdio;

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