Help for this page

Select Code to Download


  1. or download this
        if ( $atail and $ntail ne '' ) {
        ...
        elsif ( !$atail and $ntail ne '' ) {
        ...
        elsif ( not ($atail eq '' and $ntail eq '' )) {
    
  2. or download this
        if ( $atail and $ntail ) {
        ...
    ...
        ...
        elsif ( $ntail ) {
        ...
    
  3. or download this
        elsif($checkPrefix and 
              $unprefBase and    # Set in an earlier test, above
              $savgrp = &group_of($unprefBase, 1) and # This time, try to 
    +derive a group for the base.
              &member($metagroup{$savgrp}, 'NVRB', 'NOUN','VERB','ADJECTIV
    +E','ADVB', 'GERUND')){}
    
  4. or download this
        my($sing, $unprefBase, $savgrp, $savbase);