added documentation and some missing paradigm functions

This commit is contained in:
Krasimir Angelov
2025-02-08 22:03:10 +01:00
parent 9e91511724
commit 1633d11e06
6 changed files with 91 additions and 9 deletions
+6
View File
@@ -350,6 +350,9 @@ oper
-- Adverb definitions
mkAdv : Str -> Adv = \x -> lin Adv (ss x) ;
mkAdV : Str -> AdV = \s -> lin AdV {s=s} ;
mkAdA : Str -> AdA = \s -> lin AdA {s=s} ;
mkAdN : Str -> AdN = \s -> lin AdN {s=s} ;
-- Verb definitions (without type, these defs cause errors because argtype is unknown)
@@ -385,4 +388,7 @@ oper
mkAS, mkAV : Adjective -> A = \a -> lin A a ;
mkA2S, mkA2V : Adjective -> Prep -> A2 = \a,p -> mkA2 a p ;
mkInterj : Str -> Interj = \s -> lin Interj {s=s} ;
}