(Hun) Make comparative discontinuous

This commit is contained in:
Inari Listenmaa
2020-04-17 14:45:44 +02:00
parent 738dd44ec8
commit cc85e4aaeb
4 changed files with 36 additions and 16 deletions

View File

@@ -116,7 +116,15 @@ oper
--------------------------------------------------------------------------------
-- Adjectives
AdjPhrase : Type = {s : Number => Str} ;
AdjPhrase : Type = {
s : Number => Str ;
compar : Str -- Discontinuous: Én *nagyobb* vagyok *nálad*.
} ;
emptyAP : AdjPhrase = {
s = \\_ => [] ;
compar = [] ;
} ;
Adjective : Type = {s : Degree => Number => Str} ;