summaryrefslogtreecommitdiff
path: root/fpcdocs/mathex/ex20.pp
blob: bd8d4becf2961a31066dcc15ce2cb52a9d94c0d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
Program Example20;

{ Program to demonstrate the lnxp1 function. }

Uses math;

begin
  writeln(lnxp1(0));
  writeln(lnxp1(0.5));
  writeln(lnxp1(1));
end.