From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

#!perl
####################
# LOAD CORE MODULES
####################
use strict;
use warnings FATAL => 'all';
# Autoflush ON
local $| = 1;
# Test _use_
use_ok('File::chmod::Recursive')
|| BAIL_OUT('Failed to load File::chmod::Recursive');
# Done
done_testing();
exit 0;