Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    print "but I don't want to see this\n";
    
    exit;  # don't want to exit either
    
  2. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    
    warn "trying mysub";
    mysub();
    
  3. or download this
    perl do.pl
    trying mysub at do.pl line 13.
    I want to see this
    Compilation finished at Wed Aug  4 10:08:26