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

#!/usr/bin/env perl
# [[[ PREPROCESSOR ]]]
# <<< EXECUTE_SUCCESS: '$s = foo-bar' >>>
# <<< EXECUTE_SUCCESS: '$s = quux' >>>
# <<< EXECUTE_SUCCESS: '$s = zorg+blop' >>>
# <<< EXECUTE_SUCCESS: '$s = munge/sqap' >>>
# <<< EXECUTE_SUCCESS: '$s = frob*grul' >>>
# [[[ HEADER ]]]
use RPerl;
use strict;
our $VERSION = 0.001_000;
# [[[ CRITICS ]]]
## no critic qw(ProhibitUselessNoCritic ProhibitMagicNumbers RequireCheckedSyscalls) # USER DEFAULT 1: allow numeric values & print operator
## no critic qw(RequireInterpolationOfMetachars) # USER DEFAULT 2: allow single-quoted control characters & sigils
# [[[ OPERATIONS ]]]
my string_arrayref $s_array = [qw(foo-bar quux zorg+blop munge/sqap frob*grul)];
foreach my string $s ( @{$s_array} ) {
print '$s = ', $s, "\n";
}