LPC data type: string

A string is a series of alphanumeric characters.  A string is declared
in the following way:

string str;

A string at declaration time has a NULL value and will cause errors if
used in code until it is initialized.  In code, a string constant is
enclosed in "".  Example:

str = "Hello!"

