- or download this
#!/usr/bin/env perl
use warnings;
...
}
sub subtr { return shift - shift; }
sub foo { return 'foo'.shift }
- or download this
#!/usr/bin/perl
use warnings;
...
my $x = shift;
return "foo$x";
}
- or download this
#!/usr/bin/env perl
use warnings;
...
}
return @subs;
}
- 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