Help for this page

Select Code to Download


  1. or download this
    my %analysed = (
        baSlar     => ['plural'],
        baSlarimiz => ['plural', 'possessed by us'],
        baSimda    => ['possessed by me', 'locative'],
    );
    
  2. or download this
    sub findroot {
        my @words = @_;
    ...
        #return the stem - i.e. the longest common element
        return [ sort { length $b <=> length $a } keys %stems ]->[0];
    }
    
  3. or download this
    imda: 'possessed by me', 'locative'
    
  4. or download this
    use Algorithm::Permute qw( permute );
    # not so fast as other modules, but it compiled OK on cygwin
    ...
        return if $incrnext;
        return @lengths;
    }
    
  5. or download this
    @possibles = ( {
     'i'   => 'locative',
    ...
     'im'  => 'locative',
     'da'  => 'poss.by.me',
    }, ........ );
    
  6. or download this
    my %analysed = (
        baSlar     => ['root:head', 'plural'],
        baSlarimiz => ['root:head', 'plural', 'possessed by us'],
        baSimda    => ['root:head', 'possessed by me', 'locative'],
    );