こんにちは、このスクリプトは 3*2 秒の時間を要し、出力をブラウザに一度に出力します。助けてください
#!C:/perl/bin/perl.exe
use warnings;
use strict;
use CGI;
my $cgi = new CGI;
print $cgi->header();
print $cgi->start_html("First");
print $cgi->h1("First");
sleep(2);
print $cgi->h1("Second");
sleep(2);
print $cgi->h1("Third");
print $cgi->end_html();