ex37.pp 150 B

12345678
  1. Program Example37;
  2. { Program to demonstrate the Ln function. }
  3. begin
  4. Writeln (Ln(1)); { Prints 0 }
  5. Writeln (Ln(Exp(1))); { Prints 1 }
  6. end.