log.bmx 104 B

1234567
  1. Rem
  2. Log(n#) returns the natural logarithm of n
  3. End Rem
  4. for n#=1 to 20
  5. print "Log("+n+")="+Log(n)
  6. next