Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

#!/usr/bin/env perl
# vim:et:sts=4:sws=4:sw=4
use strict;
use 5.010;
use FindBin '$Bin';
use lib "$Bin/../../lib";
use lib "$Bin/../../t/lib";
# t/lib/App/Spec/Example/MySimpleApp.pm
my $spec = App::Spec->read("$Bin/../mysimpleapp-spec.yaml");
my $run = $spec->runner;
$run->run;