Rascal Language ReferenceExpressionsValuesNumberNumber AdditionOn this pageNumber Additionrascal-0.40.17SynopsisAddition on numeric values.SyntaxExp₁ + Exp₂TypesExp₁Exp₂Exp₁ + Exp₂intintintintrealrealrealrealrealDescriptionYields the numerical sum of the values of Exp₁ and Exp₂.Examplesrascal>12 + 13int: 25rascal>12 + 13.5real: 25.5