Strings

What is a string?

A string is a value made up of one or more characters, surronded by single or double quotes. There isn't any limit on the length of a string.

How do you store a string in a variable?

A variable is used that assigns a string. Both single and double quotes work for strings, so you can use quotation marks inside a string.

How do you include tabs and newlines in a string?

Insert tabs and newlines into strings using the special sequences \t and \n.