Rascal Language ReferenceExpressionsValuesNumberNumber MultiplicationOn this pageNumber Multiplicationrascal-0.34.0SynopsisMultiply two numeric values.SyntaxExp₁ * Exp₂TypesExp₁Exp₂Exp₁ * Exp₂intintintintrealrealrealrealrealDescriptionYields the result of multiplying the values of Exp₁ and Exp₂.Examplesrascal>12 * 13int: 156rascal>12 * 13.5real: 162.0rascal>-12*13int: -156