DEBSOURCES
Skip Quicknav
sources / fpc / 2.4.0-2 / fpcdocs / refex / ex37.pp
12345678
Program Example37; { Program to demonstrate the Ln function. } begin Writeln (Ln(1)); { Prints 0 } Writeln (Ln(Exp(1))); { Prints 1 } end.