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 URT::Vocabulary;

use strict;
use warnings;

use UR::Object::Type;

use URT;
class URT::Vocabulary {
    is => ['UR::Vocabulary'],
    doc => 'A set of words for a given namespace.',
};

my @words_with_special_case = (qw//);

sub _words_with_special_case {
    return @words_with_special_case;
}

1;