Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. import pl.sgjp.morfeusz.*;
  2. import java.util.*;
  3.  
  4. public class MorfExample {
  5.  
  6. public static void main(String[] args) throws InterruptedException {
  7.  
  8. Morfeusz morfeusz = Morfeusz.createInstance();
  9.  
  10. List<MorphInterpretation> gen_interps = morfeusz.generate("kot");
  11.  
  12. for(MorphInterpretation interp : gen_interps) {
  13. System.out.println(interp.getOrth());
  14. }
  15.  
  16. System.out.println("kuniec");
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement