The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more

use strict;
use v5.20;
use feature qw(signatures);
no warnings qw(experimental::signatures);
use FindBin;
use HTTP::Status qw( HTTP_CONTINUE );
## no critic (Subroutines::ProhibitSubroutinePrototypes)
sub one ( $continue = HTTP_CONTINUE, $foo = 'bar', $two = HTTP_OK() ) {
return $continue;
}
sub two ( $cwd = $Bin ) { }