Rebol Programming/square-root

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

USAGE:[edit | edit source]

SQUARE-ROOT value 

DESCRIPTION:[edit | edit source]

Returns the square root of a number.

SQUARE-ROOT is a native value.

ARGUMENTS[edit | edit source]

  • value -- (Type: number)

SOURCE CODE[edit | edit source]

square-root: native[
    "Returns the square root of a number." 
    value [number!]
]