Rebol Programming/exp

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

USAGE:

[edit | edit source]
EXP power 

DESCRIPTION:

[edit | edit source]

Raises E (natural number) to the power specified.

EXP is a native value.

ARGUMENTS

[edit | edit source]
  • power -- (Type: number)

SOURCE CODE

[edit | edit source]
exp: native[
    "Raises E (natural number) to the power specified." 
    power [number!]
]