From Clomosy Docs

The Now function returns the current date and time in the local time zone.

Example

var
  today : TclDateTime;
{
  today = Now(); // or Now
  ShowMessage('Today has date = '+DateToStr(today));
  ShowMessage('Today has time = '+TimeToStr(today));
}

Output:

See Also