After compiling:
- remove all references to:
    Data::Bind
- replace the header with:
    package Pugs::Grammar::Rule;
    no strict 'refs';
    use Pugs::Runtime::Match;
    use Pugs::Emitter::Rule::Perl5::Ratchet;
    our %rule_terms;
- replace:
        $named{'concat'} = $match;
   - with:
        push @{ $named{'concat'} }, $match;