ex1.pp 190 B

12345678910
  1. Program Example1;
  2. { Program to demonstrate the GetEpochTime function. }
  3. Uses linux;
  4. begin
  5. Write ('Secs past the start of the Epoch (00:00 1/1/1980) : ');
  6. Writeln (GetEpochTime);
  7. end.