Skip to content

Instantly share code, notes, and snippets.

use ACME::Autowrap qr/modify/ => sub{'modified'};
sub modify{ 'foo'}
sub keep { 'bar'}
say modify(); # modified
say keep(); # bar
{
no ACME::Autowrap;