fpc/docs/linuxex/ex1.pp
2004-07-17 22:03:43 +00:00

11 lines
189 B
ObjectPascal

Program Example1;
{ Program to demonstrate the GetEpochTime function. }
Uses Unix;
begin
Write ('Secs past the start of the Epoch (00:00 1/1/1980) : ');
Writeln (GetEpochTime);
end.