Go to the first, previous, next, last section, table of contents.
Some languages, like C or the original Pascal, do not have string types, they just have related things like arrays of characters. But most Pascals and various other languages have string types, which are indicated as follows:
n type-information ; bytes
z type-information ; bytes
N
Languages, such as CHILL which have a string type which is basically just an array of characters use the `S' type attribute (see section The String Field).
Go to the first, previous, next, last section, table of contents.