[next] [previous] [contents]

  15.4.4 Extended Fields
  An extended field contains a single quotation mark followed
  by one or more Es. The extended field is the only field that
  automatically prints the entire string. In addition:

  .
        If the string is smaller than the format field, BASIC left-
        justifies the string as in a left-justified field.
  .
        If the string is longer than the format field, BASIC
        extends the field and prints the entire string.
  PRINT USING "ŠE", "THE QUICK BROWN"
  PRINT USING "ŠEEEEEEEŠ, "FOX"
  END

  Output
  THE QUICK BROWN
  FOX
  The following example uses left-justified, right justified, cen-
  tered, and extended fields:
  
EXAMPLE: Click to display example.

  Output
  
EXAMPLE: Click to display example.