Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    use warnings;
    ...
    }
    sub subtr { return shift - shift; }
    sub foo { return 'foo'.shift }
    
  2. or download this
    #!/usr/bin/perl
    use warnings;
    ...
        my $x = shift;
        return "foo$x";
    }
    
  3. or download this
    #!/usr/bin/env perl
    use warnings;
    ...
        }
        return @subs;
    }
    
  4. or download this
    $ ./subdupes.pl one.pl two.pl
    Potential Duplicates:
    ...
    Potential Duplicates:
        sub subtr in file one.pl, line 11, col 1
        sub subtract in file two.pl, line 11, col 1