This is my normal code
#!/usr/bin/perl
#use Acme::Bleach;
use CGI;
$cgi=new CGI;
print $cgi->header;
print $cgi->start_html(-title=>'Login_page',-bgcolor=>'Lavender');
print $cgi->end_form();
In the above code if we uncomment the line 2 and then compile it, it will not load on browser and give error premature script.
Please check this code and answer me what are the mistakes in that ...
Thanks