```powershell function foo { $a = 1 + $b; # semicolon not needed } Install-Module Polaris; $a = 1 + $b; # semicolon needed after install-module, not needed after addition ``` We should warn against using semicolons at the end of a line.