Control Flow

Branches, loops, and exceptions,
without braces around the condition clause (as in Python, Swift, Go, Ruby).

Conditional Branches

Loops

Switch / Case

with implicit break, i.e break is the default, and it is not necessary to explicitly write it (like in Swift). Use fallthrough if necessary.

Exceptions