To program in... now we have, D! Anyone else sensing a... trend here?
http://www.digitalmars.com/d/
Sorry if this is in the wrong section.
EDIT: Here's the traditional "Hello World!" program in D:
Code:import std.c.stdio;
int main()
{
printf("hello world\n");
return 0;
}
