Help for this page

Select Code to Download


  1. or download this
      open(OUT,">>$sql_file");
      print OUT localtime().' ^ '.$pid.' ^ '.$_[0]."\n";
      close(OUT);
    
  2. or download this
    open OUT, ">>$sql_file" or die "Can not open $sql_file";
    
  3. or download this
    use strict;
    use warnings;
    ...
    );
    
    my $mymodule = MyModule->new(\%vars);