summaryrefslogtreecommitdiff
path: root/fpcdocs/refex/ex37.pp
blob: bac21baef89118eeb1c96f1d74d640e19b732040 (plain)
1
2
3
4
5
6
7
8
Program Example37;

{ Program to demonstrate the Ln function. }

begin
  Writeln (Ln(1));      { Prints 0 }
  Writeln (Ln(Exp(1))); { Prints 1 }
end.