bits of sentence syntax in Slovenian

This commit is contained in:
krasimir
2016-05-02 20:35:38 +00:00
parent 9fe7d9b697
commit 11c5687e98
4 changed files with 28 additions and 3 deletions

View File

@@ -38,4 +38,14 @@ oper
}
} ;
Clause : Type = {
s : Tense => Anteriority => Polarity => Str
} ;
mkClause : Str -> Agr -> VP -> Clause =
\subj,agr,vp -> {
s = \\t,a,p =>
subj ++ vp.s ! t ! agr
} ;
}