📄️ C-Style Enums
Pluto adds the following syntax:
📄️ Continue Statement
Continue statements are meant to be used in loops, like break. They skip the current iteration of the loop, and they'll skip any code necessary to do so.
📄️ Lambda Expressions
Lambda expressions are shorthand function objects for evaluating quick expressions. Take this code:
📄️ Switch Statement
The switch statement consists of the following new keywords:
📄️ Ternary Expressions
Ternary expressions behave identical as to how they would in C. They introduce no new keywords.
📄️ When Statement
The when statement is vehemently similar to the until statement. It's simply the direct opposite.