Strings
Strings are enclosed in single quotes''. If the string contains a
single quote ', the quote must be doubled.
$Stuff = 'my string literal'
$Stuff = ''' string starting with quote'
Note
To escape a single quote in a string literal, ALWAYS double the single quote.