home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_08 / 9n08110b < prev    next >
Text File  |  1991-04-11  |  397b  |  14 lines

  1. /*
  2.     This is a sample test file for the plist program.
  3. */
  4.  
  5. main()                      /* this is a comment    */
  6. {
  7.     int i, j, k;
  8.     printf("Hello\n");          /* this is another one  */
  9.     for (i = 0; i < 8; i++)         /* here's a third   */
  10.         for (j = 0; j < 8; j++)     /* and a fourth     */
  11.             k = i * j;
  12.     exit(0);                /* bye          */
  13. }
  14.