fpc/tests/webtbs/tw0911.pp
2000-11-30 22:38:14 +00:00

8 lines
89 B
ObjectPascal

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