I know this topic has been brought up before, but can we add some more native basic functions?
http://www.purebasic.fr/english/viewtop ... s&start=15
Couldn't find the antilogarithm -> Exp(). The complement of the Log() function.
Work around:
I know with the Pow(x.d, exponent.d) function you get x ^ exponent.
So, without Exp(), I am forced to create a constant for e ~= 2.7182818284590452353, and use it in the Pow() function.
Pow(#E, 2) = 7.3890560989306762
Can we add a constant for #E to the list of built-in constants?
#E = 2.7182818284590452353
#PI already exists.

Thanks for a great development tool!