home *** CD-ROM | disk | FTP | other *** search
/ IT.SOFT 22 / ITSOFTCD_22.iso / pc / shareware22 / file3 / TINYWEB.ZIP / CGITEST.ZIP / helloexe.pl < prev    next >
Encoding:
Text File  |  1998-10-17  |  513 b   |  22 lines

  1. ##########################################################################
  2. ##
  3. ##  CGI Testing Example
  4. ##
  5. ##  Copyright (C) 1998 RIT Research Labs
  6. ##
  7. ##  This is a sample 'Hello World' program, where 'Hello' is printed
  8. ##  from a perl script and 'World' is printed from an executable written in
  9. ##  C and invoked from the perl script.
  10. ##
  11. ##########################################################################
  12.  
  13. print "Content-Type: text/plain\n\n";
  14.  
  15. print "Hello ";
  16.  
  17. print `world.exe`;
  18.  
  19.  
  20.  
  21.  
  22.