Rebol Programming/log-10
USAGE:
LOG-10 value
DESCRIPTION:
Returns the base-10 logarithm.
LOG-10 is a native value.
ARGUMENTS:
- value -- (Type: number)
SOURCE CODE
log-10: native[
"Returns the base-10 logarithm."
value [number!]
]LOG-10 value
Returns the base-10 logarithm.
LOG-10 is a native value.
log-10: native[
"Returns the base-10 logarithm."
value [number!]
]