.. _arithmeticOperatorsDoc: .. index:: single: Arithmetic Operators ==================== Arithmetic Operators ==================== * Addition_ * Multiplication_ ---- .. index:: single: Addition .. _Addition: Addition ======== :: 1 + 1 >> ConstantTwo; 2 >> ConstantTwo; [1, 1] + 1 >> ConstantBundleTwo; [2, 2] >> ConstantBundleTwo; .. index:: single: Multiplication .. _Multiplication: Multiplication ============== :: 2 * 2 >> ConstantFour; 4 >> ConstantFour; [2, 2] * 2 >> ConstantBundleFour; [4, 4] >> ConstantBundleFour;