hello world
args.length = 1
args[0] = 'D:\TestD\bin\Release\TestD.exe'
Process returned 0 (0x0) execution time : 0.000 s
Press any key to continue.
import std.stdio;
import std.stream;
int main(char[][] args)
{
writefln("Please, enter something:");
char[] a;
readln(a);
writefln("You have written: %s", a);
return 0;
}