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

use Sub::Exporter::Progressive -setup => {
  exports => [qw(junk1 junk2)],
  groups => {
     default => [ -all ],
  },
};

sub junk1 { 1 }
sub junk2 { 1 }

1;