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