square

Calculates the square of a number.

Function

result = square(input)

Arguments

ArgumentData Type
inputnumeric
resultnumeric

Comments

Squares the number, that is multiplies it by itself.

Examples

result = square(8)
/* result = 64 */