This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/share/CodeBlocks/templates/wizard/d/console/hello.d

10 lines
103 B
D
Raw Normal View History

module main;
import std.stdio;
int main(string[] args)
{
writefln("Hello World\n");
return 0;
}