ex44.pp 213 B

123456789
  1. Program Example44;
  2. { Program to demonstrate the Octal function. }
  3. begin
  4. // Writeln ('Octal(666) : ',octal(666));
  5. Writeln (' &666 : ',&666); // 1.9.x+ functionality, octal is not necessary anymore
  6. end.