Cyril

Results 1 comments of Cyril

it's still not working: ``` val lexicon: Lexicon = Lexicon.getDefaultLexicon() val realised: Realiser = Realiser(lexicon) val word: WordElement = lexicon.getWord("games", LexicalCategory.NOUN) val inflected = InflectedWordElement(word) println(inflected.baseWord.isPlural) inflected.setFeature(Feature.NUMBER, NumberAgreement.SINGULAR) realised.realise(inflected).realisation ```...