Take notes on the command line: Difference between revisions

Content deleted Content added
Line 439:
 
=={{header|D}}==
<lang d>import std.stdio, std.file, std.string, std.datetime, std.range;
 
void main(string[] args) {
Line 450:
auto f = File(filename, "a+");
f.writefln("%s", cast(DateTime)Clock.currTime);
f.writefln("\t%s", args[1 .. $]dropOne.join(" "));
}
}</lang>