The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
12345678910 #!/usr/local/bin/perluse CGI qw/:push -nph/;$| = 1;print multipart_init(-boundary=>'----------------here we go!');while (1) { print multipart_start(-type=>'text/plain'), "The current time is ",scalar(localtime),"\n", multipart_end; sleep 1;}
#!/usr/local/bin/perl
use CGI qw/:push -nph/;
$| = 1;
print multipart_init(-boundary=>'----------------here we go!');
while (1) {
print multipart_start(-type=>'text/plain'),
"The current time is ",scalar(localtime),"\n",
multipart_end;
sleep 1;
}