ipfc.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
:xmp.
                                                      Up Next Previous
────────────────────────────────────────────────────────────────────────────
 
 :xmp.
 
The :xmp tag starts an example. An example is one or more lines of text
displayed exactly as given. The tag turns off formatting, so lines do not
wrap. In the help source file, the example must start with the :xmp tag and
end with the :exmp tag.
 
This tag does not use parameters.
 
Comments
 
An example is displayed using a monospace font. Different letters in a
monospace font have the same width, so aligning letters in the source file
guarantees that the letters will align when displayed.
 
Any tab character in a figure is interpreted as a single character and does
not align text on the next tab stop.
 
Example
 
This example uses the :xmp tag to create a program example:
 
    :xmp.
    main()
    {
        printf("Hello");
    }
    :exmp.
 
When displayed, the example looks like this:
 
    main()
    {
        printf("Hello");
    }
 
See Also
 
 :exmp
 
                                      ♦