dmd/samples/hello.d
2011-06-15 00:31:06 -07:00

13 lines
217 B
D

import std.stdio;
void main(string[] args)
{
writeln("hello world");
writefln("args.length = %d", args.length);
foreach (index, arg; args)
{
writefln("args[%d] = '%s'", index, arg);
}
}