The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl

use strict;
use warnings;

our $VERSION = '0.001';
$VERSION = eval $VERSION;

use App::multiwhich;
use YAML::XS;

run(\@ARGV);

sub run {
    my $argv = shift;
    my $app = App::multiwhich->new( $argv );
    print Dump $app->run;
}