ROPE Language Reference - "mult"

Multiplies integer numbers together.

Without AnchorBrackets, it multiplied the top two numbers of the stack and pushes back the result.

With AnchorBrackets it multiplies all the numbers between them and pushes back the result.

 7 11 mult println        # -- prints: 77
 mult(3 7 11) println     # -- prints: 231

Note: It is an error to try to multiply non-integers.

See Also

add div mod sub