Operators

Arithmetic, comparison, and logic.

Operators

+ - * / % arithmetic · == != < > compare · && || ! logic.

Example

Operation results print as-is.

fn main() {
    print(10 + 5)
    print(10 == 5)
}

Output

15
false