Help for this page

Select Code to Download


  1. or download this
        use CGI :standard;
    
        # instead of...
    
        use CGI qw{ :standard };
    
  2. or download this
    use Object;
    my $foo = new Object;  # Bad
    my $bar = Object->new; # Good