Flow Control

For

for ($i=1; $i -le 10; $i++) {
    # ...
}

Foreach

foreach ($item in $collection) {
    # ...
}

Multi-line Statements

$x = "Some really long `
value"

Strings

Concatenating

$x = "together"
Write-Host "Smushed$x"
# or...
Write-Host "Smushed$($x)"