dmd/compiler/samples/hello.d
2022-07-09 18:53:07 +02: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);
}
}