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`

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