Logo

Programming-Idioms

History of Idiom 61 > diff from v15 to v16

Edit summary for version 16 by :

Version 15

2015-08-21, 23:29:27

Version 16

2015-08-22, 21:40:15

Idiom #61 Get current date

Assign to variable d the current date/time value, in the most standard type.

Idiom #61 Get current date

Assign to variable d the current date/time value, in the most standard type.

Code
var
  _d: TDateTime;
begin
  _d := Now;
end.