mirror of
https://github.com/Perl/perl5.git
synced 2026-01-26 16:39:36 +00:00
15 lines
194 B
Perl
15 lines
194 B
Perl
#!/usr/bin/perl -w
|
|
|
|
#
|
|
# Maintainers - show information about maintainers
|
|
#
|
|
|
|
use strict;
|
|
use lib "Porting";
|
|
|
|
use Maintainers qw(show_results process_options);
|
|
|
|
show_results(process_options());
|
|
|
|
|