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 TestAppToTestScripts;
use strict;
use warnings;
use Carp;

our @RUN_ARGS;

sub run {
    @RUN_ARGS = @_;
    1; # Does this work?
}

1;