mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 01:49:30 +02:00
12 lines
156 B
ObjectPascal
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.
|