Difference between revisions of "The D Programming Language"

From D Wiki
Jump to: navigation, search
(Docs icon draft)
(Move up Hello World)
Line 2: Line 2:
 
{{DISPLAYTITLE:<span style="display:none">{{FULLPAGENAME}}</span>}}
 
{{DISPLAYTITLE:<span style="display:none">{{FULLPAGENAME}}</span>}}
  
 +
<table cellspacing="10" style="width:100%;">
 +
<tr>
 +
<td>
 
= The D Programming Language =
 
= The D Programming Language =
  
Line 9: Line 12:
  
 
[http://www.amazon.com/exec/obidos/ASIN/0321635361/classicempire "The D Programming Language"] by Andrei Alexandrescu is available on Amazon and other locations.  
 
[http://www.amazon.com/exec/obidos/ASIN/0321635361/classicempire "The D Programming Language"] by Andrei Alexandrescu is available on Amazon and other locations.  
 +
 +
 +
</td>
 +
<td>
 +
= Hello World =
 +
 +
<syntaxhighlight lang="D">import std.stdio;
 +
 +
int main(string[] args)
 +
{
 +
    writeln("Hello, world!");
 +
    return 0;
 +
}</syntaxhighlight>
 +
 +
 +
</td>
 +
</tr>
 +
</table>
  
 
= D Wiki Overview =
 
= D Wiki Overview =
Line 56: Line 77:
 
* [[Special:RecentChanges|Show recently changed pages]]
 
* [[Special:RecentChanges|Show recently changed pages]]
  
 
= Hello World =
 
 
<syntaxhighlight lang="D">import std.stdio;
 
 
int main(string[] args)
 
{
 
    writeln("Hello, world!");
 
    return 0;
 
}</syntaxhighlight>
 
  
  

Revision as of 13:39, 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;
}


D Wiki Overview

Introduction

Community

Icon docs 32.png Documentation

Core Development

Useful Links



MediaWiki Help

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

Getting started