RosettaCodeData/Task/Take-notes-on-the-command-line/PascalABC.NET/take-notes-on-the-command-line.pas

12 lines
351 B
ObjectPascal
Raw Permalink Normal View History

2024-07-13 15:19:22 -07:00
begin
//Print(ParamStr(1));
if ParamCount = 0 then
System.IO.File.ReadAllText('Notes.txt').Print
else begin
System.IO.File.AppendAllText('Notes.txt',DateTime.Now.ToString);
var s := (1..ParamCount).Select(i -> ParamStr(i)+NewLine).JoinToString;
s := #9 + NewLine + s;
System.IO.File.AppendAllText('Notes.txt',s);
end;
end.