< Rebol Programming

USAGE:

POWER number exponent 

DESCRIPTION:

Returns the first number raised to the second number.

POWER is an action value.

ARGUMENTS:

  • number -- (Type: number)
  • exponent -- (Type: number)

SOURCE CODE

power: native[
    {Returns the first number raised to the second number.} 
    number [number!] 
    exponent [number!]
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.