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 My::Vars5;

use Badger::Class
    vars => '$FOO @BAR %BAZ';

$FOO = 'fourteen';
@BAR = (14, 24, 34);
%BAZ = (g => 310, h => 420);

1;