Difference between revisions of "The D Programming Language"

From D Wiki
Jump to: navigation, search
(link=Libraries_and_Frameworks Resources & Directory)
(tried to compact front page box layout for smaller screens – feel free to revert)
Line 1: Line 1:
{{DISPLAYTITLE:<span style="display:none">{{FULLPAGENAME}}</span>}}
+
{{DISPLAYTITLE:<span style="display:none">{{FULLPAGENAME}}</span>}} <!-- need a better way to hide the title without the huge gap, or rename the page -->
 
__NOTOC__
 
__NOTOC__
 
<table cellspacing="10" style="width:100%;">
 
<table cellspacing="10" style="width:100%;">
Line 59: Line 59:
 
* [http://dlang.org/phobos/index.html Standard Library Reference (Phobos)]
 
* [http://dlang.org/phobos/index.html Standard Library Reference (Phobos)]
 
* [[Books|Books (Online and printed)]]
 
* [[Books|Books (Online and printed)]]
* [[Articles|Articles]]
+
* [[Articles|Articles]] — [[Tutorials]] — [[Cookbook]]
 
</td>
 
</td>
 
</tr>
 
</tr>
  
 
<tr>
 
<tr>
<td style="margin:0; margin-top:10px; margin-right:10px; border:1px solid #d1e7da; border-bottom: 2px solid #b1c7ba; border-top: 1px solid #fff; padding:0 1em 1em 1em; background-color: #e6f5ec; align:right;vertical-align:top;">
+
<td style="margin:0; margin-top:10px; margin-right:10px; border:1px solid #eee; border-top: 2px solid #ccc; border-bottom: 1px solid #f6f6f6; padding:0 1em 1em 1em; background-color:#fff; align:right;vertical-align:top;">
 
+
== [[File:Icon_meta_32.png|link=Meta]] <span style="color:#999;">Meta</span> ==
== [[File:Icon_praxis_32.png|link=Tutorials]] Praxis ==
+
* [[Meta|Discuss this wiki]] <span style="color:#999;">(Criticise, suggest improvements etc.)</span>
* [[Tutorials]]
 
* [[Cookbook]]
 
* [http://forum.dlang.org/group/digitalmars.D.learn Learn D Forum]
 
* [http://stackoverflow.com/questions/tagged/d D on StackOverflow]
 
* [http://dpaste.dzfl.pl/ DPaste] Share and run D code in your browser (no plugin needed)
 
 
</td>
 
</td>
 
</tr>
 
</tr>
 
  
 
</table>
 
</table>
Line 88: Line 82:
 
* [http://forum.dlang.org Forums] / [news://news.digitalmars.com Newsgroup] (Same content)
 
* [http://forum.dlang.org Forums] / [news://news.digitalmars.com Newsgroup] (Same content)
 
* [irc://irc.freenode.net/d IRC: Join <tt>#d</tt>] on [http://freenode.net Freenode]
 
* [irc://irc.freenode.net/d IRC: Join <tt>#d</tt>] on [http://freenode.net Freenode]
* [irc://irc.oftc.net/d IRC: Join <tt>#d</tt>] on [http://www.oftc.net OFTC]
 
 
* [http://www.linkedin.com/groups/D-Developer-Network-3923820 LinkedIn: D Developer Network (DDN)]
 
* [http://www.linkedin.com/groups/D-Developer-Network-3923820 LinkedIn: D Developer Network (DDN)]
* [[D_User_Groups|D User Groups (DUGs)]]
+
* [[D_User_Groups|D User Groups (DUGs)]] — [[Events]]
* [[Events]]
+
* [http://stackoverflow.com/questions/tagged/d D on StackOverflow]
 +
* [http://dpaste.dzfl.pl/ DPaste] Share and run D code in your browser (no plugin needed)
 
</td>
 
</td>
  
Line 117: Line 111:
 
</td>
 
</td>
 
</tr>
 
</tr>
 
+
</table>
<tr>
 
<td style="margin:0; margin-top:10px; margin-right:10px; border:1px solid #eee; border-top: 2px solid #ccc; border-bottom: 1px solid #f6f6f6; padding:0 1em 1em 1em; background-color:#fff; align:right;vertical-align:top;">
 
== [[File:Icon_meta_32.png|link=Meta]] <span style="color:#999;">Meta</span> ==
 
* [[Meta|Discuss this wiki]] <span style="color:#999;">(Criticise, suggest improvements etc.)</span>
 
</td>
 
</tr></table>
 
  
 
</td>
 
</td>

Revision as of 17:29, 27 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;

void main()
{
    writeln("Hello, world!");
}

▶ Run code

Icon intro 32.png Introduction

Icon tools 32.png Compilers & Tools

Icon docs 32.png Documentation

Icon meta 32.png Meta

Icon community 32.png Community

Icon resources 32.png Resources & Directory

Icon dev 32.png Core Development

Latest DMD: D2·108·0 DownloadChangelogSource code —  Bug trackerMore »

MediaWiki Help

Consult the User's Guide for information on using the wiki software, or see the MediaWiki FAQ.

Useful Links