* multiplication Description Returns the product of two expressions. Syntax A * B A Any expression evaluating to a numeric type. B Any expression evaluating to a numeric type. Return Value According to coercion rules. Time Complexity #TODO Example >>> 2 * 2 4 >>> 2 * 2.0 4.0 >>> 2.0 * 2 4.0 See also #TODO