STRING INDEX

STRING _ _ _ _ _ _ _ _ _ _ _ _ type

A string is any collection of characters enclosed in double quotation marks ("). It may be used as an argument for a variety of commands and operators, such as in, rederr and write.

examples:


write "this is a string"; 

  this is a string 


write a, " ", b, " ",c,"!"; 

  A B C!