fpc/tests/webtbs/tw0911.pp
2002-09-07 15:40:30 +00:00

9 lines
90 B
ObjectPascal

Function Log(const b,r:real):real;
begin
log:=ln(r)/ln(b);
end;
begin
log(2,5);
end.