Creat a literal string

$animal = 'fox'
'The quick brown $animal jumps over the lazy dog.'
Details
Using the single quote (‘) will create a literal string, that will not evaluate any varibles
or expressions in the string. It will output exactly as entered.

Example
PS C:\> $animal = 'fox'
>> 'The quick brown $animal jumps over the lazy dog.'

The quick brown $animal jumps over the lazy dog.