This is an example of a single-quote string.\n

This is an example of a double-quote string.

The difference between single and double quote strings is that single-quote strings print literally what is typed without interpretation.
The double-quote strings will interpret what you print. In my example above, both strings contain a "\n" but only one of them show it when printed. This is due to the double-quote string interpreting that I would like to start a new line, where as the single-quote string will print exactly what is typed.