add
Add two numbers.
R.add.run(1, 2)
// 3Add two numbers.
R.add.run(1, 2)
// 3Decrement the number.
R.dec.run(1)
// 0Divide two numbers.
R.divide.run(1, 2)
// 0.5Increment the number.
R.inc.run(1)
// 2Calculate the modulo.
R.mod.run(1, 2)
// 1Multiply two numbers.
R.multiply.run(1, 2)
// 2Negate the number.
R.negate.run(1)
// -1Multiply all the numbers.
R.product.run(1, 2, 3)
// 6Subtract one number from another.
R.subtract.run(1, 2)
// -1Contribute on Github! Edit this section.