C/C++
d.txt
Associated article: The D Programming Language
Tags: C/C++
Published source code accompanying the article by Walter Bright in which he discusses D, a programming language that looks a lot like C and C++, but eliminates features that make programs difficult to write, debug, test, and maintain.
The D Programming Language
by Walter Bright
Listing One
(a)
static int bar(); // forward reference
int foo()
{
return bar();
}
static int bar()
{
...
}
(b)
int foo()
{
return bar();
}
static int bar()
{
...
}
Listing Two
(a)
class Foo;
class Bar { Foo f; }
class ...


