Difference between revisions of "The D Programming Language"

From D Wiki
Jump to: navigation, search
(Latest gizmo)
Line 30: Line 30:
 
</table>
 
</table>
  
 +
<table style="width:100%;">
 +
<tr>
 +
<td style="vertical-align:top; width:50%;">
 
<table cellspacing="10" style="width:100%;">
 
<table cellspacing="10" style="width:100%;">
 
<tr>
 
<tr>
 
 
<td style="margin:0; margin-top:10px; margin-right:10px; border:1px solid #e9e7d4; padding:0 1em 1em 1em; background-color: #f9f7e4; align:right;vertical-align:top;">
 
<td style="margin:0; margin-top:10px; margin-right:10px; border:1px solid #e9e7d4; padding:0 1em 1em 1em; background-color: #f9f7e4; align:right;vertical-align:top;">
 
== Introduction ==
 
== Introduction ==
Line 41: Line 43:
 
* [[CurrentDUse | Current uses of D]]
 
* [[CurrentDUse | Current uses of D]]
 
</td>
 
</td>
 
+
</tr>
<td style="margin:0; margin-top:10px; margin-right:10px; border:1px solid #c0d9e2; padding:0 1em 1em 1em; background-color: #e4f4f9; align:right;vertical-align:top;">
+
<tr>
== [[File:Icon_community_32.png]] Community ==
+
<td style="margin:0; margin-top:10px; margin-right:10px; border:1px solid #e9e7d4; padding:0 1em 1em 1em; background-color: #f1f7df; align:right;vertical-align:top;">
* [http://forum.dlang.org Forums / Newsgroups]
+
== Compilers &amp; Tools ==
* [[Community:Videos|Videos]]
+
* [[Ecosystem | D Ecosystem Overview]]
* [[Community:OpenSourceProjects|Open Source Projects]]
+
* [[Compilers | D Compilers]]
* [[Community:HelpWanted|Help wanted]]
+
* [[IDEs | Integrated Developments Environments (IDE)]]
 +
* [[LibrariesAndFrameworks | Libraries and Frameworks]]
 
</td>
 
</td>
 
 
</tr>
 
</tr>
 
 
<tr>
 
<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;">
 
<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;">
 
 
== [[File:Icon_docs_32.png]] Documentation ==
 
== [[File:Icon_docs_32.png]] Documentation ==
 
* [http://dlang.org/spec.html D Language Specification]
 
* [http://dlang.org/spec.html D Language Specification]
Line 62: Line 61:
 
* [[Docs:Articles|Articles]]
 
* [[Docs:Articles|Articles]]
 
</td>
 
</td>
 +
</tr>
 +
</table>
  
 +
</td>
 +
<td style="vertical-align:top; width:50%;">
 +
<table cellspacing="10" style="width:100%;">
 +
<tr>
 +
<td style="margin:0; margin-top:10px; margin-right:10px; border:1px solid #c0d9e2; padding:0 1em 1em 1em; background-color: #e4f4f9; align:right;vertical-align:top;">
 +
== [[File:Icon_community_32.png]] Community ==
 +
* [http://forum.dlang.org Forums / Newsgroups]
 +
* [[Community:Videos|Videos]]
 +
* [[Community:OpenSourceProjects|Open Source Projects]]
 +
* [[Community:HelpWanted|Help wanted]]
 +
</td>
 +
</tr>
 +
<tr>
 
<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;">
 
<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 ==
 
== Core Development ==
Line 69: Line 83:
 
* [[Dev:ReviewQueue|Review Queue]]
 
* [[Dev:ReviewQueue|Review Queue]]
 
</td>
 
</td>
 
+
</tr></table>
 +
</td>
 
</tr>
 
</tr>
 
</table>
 
</table>

Revision as of 17:38, 22 November 2012


The D Programming Language

The D Programming Language has been said to be "what C++ wanted to be," which is a better C. D is developed with system level programming in mind, but brings to the table modern language design with a simple C-like syntax. For these reasons D makes for a good language choice for both performance code and application development.

D is rapidly reaching a stable specification and implementation.

"The D Programming Language" by Andrei Alexandrescu is available on Amazon and other locations.


Hello World

import std.stdio;

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


Introduction

Compilers & Tools

Icon docs 32.png Documentation

Icon community 32.png Community

Core Development


Latest: D2·060 Download | Changelog | Source codeBug tracker


Useful Links



MediaWiki Help

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

Getting started