The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Babble::Plugin::CoreSignatures - Plugin for signatures feature

SYNOPSIS

Supports converting from signatures syntax to plain @_ unpacking, for example from

    sub foo :prototype($) ($sig) { }

to

    sub foo ($) { my ($sig) = @_; }

SEE ALSO

signatures feature