home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / online / source / c / compilers / C_Interp.sit.hqx / C_Interp / main.c < prev    next >
C/C++ Source or Header  |  1993-05-14  |  176b  |  13 lines

  1. /*** Main ***/
  2. #include "Compatibility.h"
  3. #include "File.h"
  4.  
  5. main()
  6. {
  7. char s[80];
  8.     printf("Running...\nScript to execute:");
  9.     gets(s);
  10.     printf("\n");
  11.     RunScript((Byte *) s);
  12. }
  13.