home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / CENVIW1.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.