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 Vending::Command::Quarter;

class Vending::Command::Quarter {
    is => 'Vending::Command::InsertMoney',
    has => [
        name => { is_constant => 1, value => 'quarter' },
    ],
    doc => 'Insert a quarter into the machine',
};

1;