Cheddar Documentation
Search…
Cheddar Documentation
Introduction
Syntax
Literals
Mathematics
Addition
Subtraction
Multiplication
Division
Exponentiation
Remainder
Negation
Sign
Root
Bitwise AND
Bitwise OR
Bitwise XOR
Bitwise NOT
Bitwise Left Shift
Bitwise Right Shift
Variables
Functions
Default Operators
Control Flow
Standard Library
Developing
Powered By GitBook
Multiplication

Syntax

1
x * y
Copied!

Explanation

The multiplication operator returns the product of the two operands as a new number.

Examples

1
2 * 3 // 6
2
-2 * 3 // -6
3
-2 * -2 // 4
Copied!
Previous
Subtraction
Next
Division
Last modified 1yr ago
Copy link
Contents
Syntax
Explanation
Examples