Difference between revisions of "Sandbox"

From D Wiki
Jump to: navigation, search
Line 8: Line 8:
 
     return 0;
 
     return 0;
 
}</syntaxhighlight>
 
}</syntaxhighlight>
 
 
<table cellspacing="10" style="width:100%;">
 
<tr>
 
<td style="margin:0; margin-top:10px; margin-right:10px; border:1px solid #d0e2c0; padding:0 1em 1em 1em; background-color: #eaf7df; align:right;vertical-align:top;">
 
== Introduction ==
 
 
* [[How_do_I_get_Started|How do I get started?]]
 
* [[Beginner_FAQ|FAQ for new game programmers]]
 
 
</td>
 
<td style="margin:0; margin-top:10px; margin-right:10px; border:1px solid #d0e2c0; padding:0 1em 1em 1em; background-color: #eaf7df; align:right;vertical-align:top;">
 
== Documentation ==
 
 
* [[Docs:Books|Books about D]]
 
* [[Docs:Articles|Articles]]
 
</td>
 
</tr>
 
 
<tr>
 
<td style="margin:0; margin-top:10px; margin-right:10px; border:1px solid #c0d9e2; padding:0 1em 1em 1em; background-color: #def0f7; align:right;vertical-align:top;">
 
== Community ==
 
 
* [[Community:Projects|Projects]]
 
* [[Community:HelpWanted|Help wanted]]
 
</td>
 
<td style="margin:0; margin-top:10px; margin-right:10px; border:1px solid #dddddd; padding:0 1em 1em 1em; background-color:#f2f2f2; align:right;vertical-align:top;">
 
== Core Development ==
 
 
* [[Dev:How_to_help|How to help]]
 
* [[Dev:DIPs|D Improvement Proposals]]
 
* [[Dev:ReviewQueue|Review Queue]]
 
</td>
 
</tr>
 
</table>
 

Revision as of 09:52, 22 November 2012

Hello, world!

import std.stdio;

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