mirror of
https://github.com/dlang/dmd.git
synced 2025-04-25 20:50:41 +03:00
13 lines
217 B
D
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);
|
|
}
|
|
}
|