home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cenvi23.zip / HELLO.CMM < prev    next >
Text File  |  1995-11-21  |  365b  |  11 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. printf("\n");
  11.