Index

String

A literal string.

Input Format:

A sequence of printable ASCII characters enclosed in quotes. Unprintable characters can be entered as C-style escape sequences. These include:

Examples:
The following example shows how the \n escape sequence is used to start a new line.
 print "One\nTwo"
 print " Three\n"

 -> One
    Two Three

Martin Shepherd (9-Oct-1997)