mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-27 07:53:43 +02:00
13 lines
202 B
ObjectPascal
13 lines
202 B
ObjectPascal
Program Example6;
|
|
|
|
{ Program to demonstrate the GetDate function. }
|
|
|
|
Uses Unix;
|
|
|
|
Var Year, Month, Day : Word;
|
|
|
|
begin
|
|
GetDate (Year, Month, Day);
|
|
Writeln ('Date : ',Day:2,'/',Month:2,'/',Year:4);
|
|
end.
|