Difference between revisions of "The D Programming Language"
(Port of the FrontPage from http://www.prowiki.org/wiki4d/wiki.cgi) |
|||
Line 1: | Line 1: | ||
− | + | == D Programming Language == | |
+ | |||
+ | [http://dlang.org/index.html 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. | ||
+ | |||
+ | * [[WhySwitch | Why switch to D]] | ||
+ | * [[DevelopmentWithD | Development with D]] | ||
+ | * [[LanguageSpecification | Language Specification]] | ||
+ | * [[FirstLanguage | Learning D as a first language]] | ||
+ | * [[ComingFrom | Learning D as a second language]] | ||
+ | * [[LanguageDevel | Follow Language Development]] | ||
+ | * [[CurrentDUse | Current uses of D]] | ||
+ | |||
+ | D is rapidly reaching a stable [http://dlang.org/spec.html specification] and [http://dlang.org/download.html implementation]. | ||
+ | |||
+ | [http://www.amazon.com/exec/obidos/ASIN/0321635361/classicempire "The D Programming Language"] by Andrei Alexandrescu is available on Amazon and other locations. | ||
+ | |||
+ | == MediaWiki == | ||
Consult the [//meta.wikimedia.org/wiki/Help:Contents User's Guide] for information on using the wiki software. | Consult the [//meta.wikimedia.org/wiki/Help:Contents User's Guide] for information on using the wiki software. |
Revision as of 03:47, 22 November 2012
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.
- Why switch to D
- Development with D
- Language Specification
- Learning D as a first language
- Learning D as a second language
- Follow Language Development
- Current uses of D
D is rapidly reaching a stable specification and implementation.
"The D Programming Language" by Andrei Alexandrescu is available on Amazon and other locations.
MediaWiki
Consult the User's Guide for information on using the wiki software.
Getting started
import std.stdio;
int main(string[] args)
{
writeln("Hello, world!");
return 0;
}