mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-27 09:33:41 +02:00
9 lines
150 B
ObjectPascal
9 lines
150 B
ObjectPascal
Program Example37;
|
|
|
|
{ Program to demonstrate the Ln function. }
|
|
|
|
begin
|
|
Writeln (Ln(1)); { Prints 0 }
|
|
Writeln (Ln(Exp(1))); { Prints 1 }
|
|
end.
|