home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PROG_C / CENVIW9.ZIP / HELLO.CMM < prev    next >
Text File  |  1994-03-04  |  351b  |  10 lines

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