Meta Project

The Unofficial Meta Documentation

MULTIPLY

Summary

MULTIPLY Multiplies two numbers

Category

MATH

Usage

MULTIPLY value1 value2

Arguments

value1 - a value of NUMBER! type

value2 - a value of NUMBER! type

Refinements

This method has no refinements

Description

MULTIPLY multiplies two numbers. MULTIPLY is prefix notation. Meta also can handle the infix operator * for multiplication

Example Code

MULTIPLY as prefix

product: MULTIPLY 2 3

with product of 6.

MULTIPLY as infix

product: 2 * 3

with also a result of 6

Related

ADD  
SUBTRACT  
POWER  
MODULO  

Back to the Meta Methods Reference index