home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 17 / CD_ASCQ_17_101194.iso / dos / prg / sphinx / examples / simple / simple01.c__ < prev    next >
Encoding:
Text File  |  1993-11-28  |  925 b   |  25 lines

  1. /*
  2.     FILENAME:  SIMPLE01.C--
  3.  
  4.     DESCRIPTION:  This is the first in a list of progressing example files
  5.                   to teach you how to use C--.
  6.                   This example file is the smallest C-- program, it simply
  7.                   starts and then exits.
  8.  
  9.     CONCEPTS:  - Execution of a C-- program begins at the procedure main().
  10.                - The instructions contained in main() begin immediately
  11.                  following the { and end at the }.  Since there are no
  12.                  instructions within the two { } in this example, nothing
  13.                  happens and the program simply quits.
  14.                - Comments may be inserted into code starting with /* and
  15.                  ending with */.  Comments may be nested.
  16.  
  17.     COM FILE SIZE:  30 bytes.
  18. */
  19.  
  20.  
  21. main()            /* program starts here */
  22. {
  23. }                 /* program ends here */ 
  24.  
  25. /* end of SIMPLE01.C-- */