1
0
forked from GitHub/gf-rgl

added pronouns

This commit is contained in:
Krasimir Angelov
2026-04-13 16:27:30 +02:00
parent e3b27613fd
commit 4cd3d3158e
6 changed files with 17 additions and 8 deletions

View File

@@ -487,4 +487,10 @@ oper
mkSN : Str -> SN = \s -> lin SN {s=s} ;
mkPN : Str -> PN = \s -> lin PN {s=s} ;
mkPron : Str -> Number -> Person -> Pron = \s,n,p ->
lin Pron {
s = s ;
empty = [] ;
a = {n = n; p = p}
} ;
}