fpc/tests/webtbs/tbug911.pp
2000-04-20 15:33:49 +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.