The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# test 'collapsing' of string evals
my @src = (
    (("1+1")            x 2),
    (("eval '1+1'")     x 2),
    (("sub { 1 }->()")  x 2),
);
for my $src (@src) {
    eval $src;
}