blob: 706007e449faf6efe01582ec593d32957720348a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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.
|