Statements

Statements often start with a keyword.

Swift doesn’t require you to write a semicolon (;) after each statement in your code, although you can do so if you wish.

Semicolons are required if you want to write multiple separate statements on a single line

let cat = "🐱"; print(cat)