home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 6 / The_Pier_Shareware_Number_6_(The_Pier_Exchange)_(1995).iso / 035 / cenvi29.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.