Strings are an array of characters ending in a NULL ('\0') character. They are used for things such as printing text, message boxes, menus and titlebars.
(procedure (TitleProc)
Display("SCI Quest")
)
(string
TitleString = "SCI Quest"
)
(procedure (TitleProc)
Display(TitleString)
)
(procedure (TitleProc)
Print(
"This is a very long "+
"string.\n"+
"That uses three lines in this source file"
)
)
(procedure (StringProc)
// You can make use of the array.
// This would display "is a string"
Display(SomeString[5])
)