*****************************************
* Program name: copy.cpy
* This program provides examples of
* COPY and INCLUDE statement usage.
*
* See COPYBOOK.CPY and COPYBOOK.INC for
* the included variable definitions.
*
* Copyright 2000 Deskware, Inc.
*****************************************
COPY `COPYBOOK.CPY`.
INCLUDE `COPYBOOK.INC`.
main.
DISPLAY `This program demonstrates the use of the `.
DISPLAY `COPY and INCLUDE commands. `.
DISPLAY ``.
MOVE `Line 1...` TO line1.
MOVE `Line 2...` TO line2.
DISPLAY line1.
DISPLAY line2.
STOP RUN.