fpc/docs/linuxex/ex6.pp
1998-03-25 11:26:49 +00:00

13 lines
203 B
ObjectPascal

Program Example6;
{ Program to demonstrate the GetDate function. }
Uses linux;
Var Year, Month, Day : Word;
begin
GetDate (Year, Month, Day);
Writeln ('Date : ',Day:2,'/',Month:2,'/',Year:4);
end.