Rebol Programming/log-10

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USAGE:[edit | edit source]

LOG-10 value 

DESCRIPTION:[edit | edit source]

Returns the base-10 logarithm.

LOG-10 is a native value.

ARGUMENTS:[edit | edit source]

  • value -- (Type: number)

SOURCE CODE[edit | edit source]

log-10: native[
    "Returns the base-10 logarithm." 
    value [number!]
]