Hello World for D looks like this:
import std.stdio;
void main(string[] args)
{
writeln("Hello World, Reloaded");
}
from http://www.digitalmars.com/d/
But when I compile that with gdc-4.4.5 I get:
hello.d:5: Error: undefined identifier writeln, did you mean function writefln?
hello.d:5: Error: function expected before (), not __error of type _error_
Is this a D1/D2 thing? A library thing? It seems odd that writefln is a stdio library function and writeln is not.