if you type string in the search engine of game studio manual you will find the quote i pulled out of there its
title location rank
Strings Script Language 6
Strings are a plain sequence of alphanumerical characters - letters, numbers or symbols - which can be used for messages, onscreen menus or text panels. They are defined this way:
STRING* name = "characters";
Defines a global string pointer with the given name and initializes it to the content characters between double quotation marks. If the character content is spread over several lines, line feeds are automatically inserted. LC Note that in lite-C pointers are generally defined with a '*', so the green * is required for lite-C, but must be omitted in C-Script.
thats more of the quote