home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1994 February / psl_9403.zip / psl_9403 / DOS / UT_SYSTM / CENVI2.ZIP / HELLO.CMM < prev    next >
Text File  |  1993-07-27  |  209b  |  6 lines

  1. // Hello.cmm: My first Cmm program
  2. Count = 1;  /* Count is how many Cmm programs I've written */
  3. printf("Hello world. This is my %dst Cmm program.\n",Count);
  4. printf("Press any key to quit...");
  5. getch();
  6.