Difference between revisions of "Sandbox"

From D Wiki
Jump to: navigation, search
(Created page with "==Hello, world!== <syntaxhighlight lang="D">import std.stdio; int main(string[] args) { writeln("Hello, world!"); return 0; }</syntaxhighlight>")
 
(Trying a table layout)
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 #e0f2d0; padding:0 1em 1em 1em; background-color:lightyellow; 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 #e0f2d0; padding:0 1em 1em 1em; background-color:#ECF9FF; 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 #d0e9f2; padding:0 1em 1em 1em; background-color:lightyellow; 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 #ededed; padding:0 1em 1em 1em; background-color:#ECF9FF; align:right;vertical-align:top;">
 +
== Core Development ==
 +
 +
* [[Dev:DIPs|D Improvement Proposals]]
 +
* [[Dev:ReviewQueue|Review Queue]]
 +
</td>
 +
</tr>
 +
</table>

Revision as of 09:31, 22 November 2012

Hello, world!

import std.stdio;

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


Introduction

Documentation

Community

Core Development