Listing 4

 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: }
/* End of File */