summaryrefslogtreecommitdiff
path: root/fpcdocs/unixex/ex1.pp
blob: 53e46f12260a769dce1d40f9897762ea00621c8d (plain)
1
2
3
4
5
6
7
8
9
10
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.