Meta Project

The Unofficial Meta Documentation

ADD

Summary

ADD adds two numbers

Category

MATH

Usage

ADD value1 value2

Arguments

value1 - a value of NUMBER! type

value2 - a value of NUMBER! type

Refinements

This method has no refinements

Description

ADD adds two numbers. ADD is prefix notation. Meta also can handle the infix operator + for addition

Example Code

ADD as prefix

sum: ADD 1 3

with sum of 4.

ADD as infix

sum: 1 + 3

with also a result of 4

Related

SUBTRACT  
MULTIPLY  
POWER  
MODULO  

Back to the Meta Methods Reference index