home *** CD-ROM | disk | FTP | other *** search
/ Netrunner 2004 October / NETRUNNER0410.ISO / regular / ActivePerl-5.8.4.810-MSWin32-x86.msi / _c9dee1f8597dd285edb703246fce99d3 < prev    next >
Encoding:
Text File  |  2004-06-01  |  273 b   |  11 lines

  1. #!/usr/local/bin/perl
  2. use CGI qw/:push -nph/;
  3. $| = 1;
  4. print multipart_init(-boundary=>'----------------here we go!');
  5. while (1) {
  6.     print multipart_start(-type=>'text/plain'),
  7.     "The current time is ",scalar(localtime),"\n",
  8.     multipart_end;
  9.     sleep 1;
  10. }
  11.