(log n (? base))
  n: a num
  base: a num (optional)
  returns a flo
F

Logarithm.

(log n) converts n to a float and calls f32::ln.

(log n base) converts both arguments into floats and calls f32::log2, f32::log10 or f32::log as appropriate.

pow
flo-sign