ex6.pp 203 B

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