📄️ Alternative Operators
Pluto implements alternative operators, which are aliases for other operators.
📄️ Compound Operators
Pluto implements a plethora of compound operators, which are actually faster than their Lua counterparts.
📄️ Increment Operator
Pluto provides an easy way to increment variables using the prefixed ++ operator:
📄️ Null-Coalescing Operator
The null-coalescing operator (or more appropriately, nil-coalescing operator) can be used as follows:
📄️ Walrus Operator
The Walrus operator allows you to perform assignment expresssions, where the second operand to your assignment is the value of the expression.