### New Block Operations 

I'd say the ability to expand the language, creating pseudo block operations is one.

1. You declare the prototype for a sub indicating that it takes a code reference first

        sub do_stuff_with_a_hash (&\%) {
            my ( $block_of_code, $hash_ref ) = @_;
            while ( my ( $k, $v ) = each %$hash_ref ) { 
                $block_of_code->( $k, $v );
            }
        }

1. You can then call it in the body like so 

        use Data::Dumper;

        do_stuff_with_a_hash {
            local $Data::Dumper::Terse = 1;
            my ( $k, $v ) = @_;
            say qq(Hey, the key   is "$k"!);
            say sprintf qq(Hey, the value is "%v"!), Dumper( $v );

        } %stuff_for
        ;

(`Data::Dumper::Dumper` is another semi-hidden gem.) Notice how you don't need the `sub` keyword in front of the block, or the comma before the hash. It ends up looking a lot like: `map { } @list`

### Source Filters 

Also, there are source filters. Where perl will pass you the code so you can do manipulate it. Both this, and the block operations, are pretty much don't try this at home type of things. 

### Signal Hooks

It's often enough done, but it's not all that obvious. Here's a die handler that piggy backs on the old one.  

    my $old_die_handler = $SIG{__DIE__};
    $SIG{__DIE__}       
        = sub { say q(Hey! I'm DYIN' over here!); goto &$old_die_handler; }
        ;

That means whenever some other module in the code wants to die, they gotta come to you (unless someone else does a destructive overwrite on `$SIG{__DIE__}`). And you can be notified that somebody things something is an error. 

Of course, for enough things you can just use an `END { }` block, if all you want to do is clean up.