added basic syntax

This commit is contained in:
Krasimir Angelov
2024-12-05 19:13:13 +01:00
parent d8aaeeb682
commit 108bfb4163
6 changed files with 80 additions and 3 deletions
+7
View File
@@ -16,4 +16,11 @@ lincat Numeral = {s : Str} ;
lincat Digits = {s : Str; n : Number; tail : DTail} ;
lincat Decimal = {s : Str; n : Number; hasDot : Bool} ;
lincat AP = {s: Species => Case => Gender => Number => Str} ;
lincat CN = Noun ;
lincat Num = {s : Str; n : Number} ;
lincat Quant = {s : Str; spec : Species} ;
lincat Det = {s : Str; spec : Species; n : Number} ;
lincat NP = {s: Case => Str; a : Agr} ;
}