Exemple #1
0
 void move(tcount pos)
     {
     LEMMAS[pos].Type = Type;
     LEMMAS[pos].BaseForm = BaseForm;
     LEMMAS[pos].S = S;
     if(next)
         {
         LEMMAS[pos].next = LEMMAS + pos + 1;
         next->move(pos + 1);
         }
     }