fpc/docs/mathex/ex20.pp
2000-07-06 12:36:10 +00:00

12 lines
156 B
ObjectPascal

Program Example20;
{ Program to demonstrate the lnxp1 function. }
Uses math;
begin
writeln(lnxp1(0));
writeln(lnxp1(0.5));
writeln(lnxp1(1));
end.