1
0
forked from GitHub/gf-rgl
Files
gf-rgl/src/polish/NamesPol.gf
2023-07-24 17:24:13 +02:00

13 lines
275 B
Plaintext

concrete NamesPol of Names = CatPol ** {
lin GivenName, MaleSurname, FemaleSurname = \n -> n ;
lin FullName gn sn = {
nom = gn.nom ++ sn.nom ;
voc = gn.nom ++ sn.voc ;
dep = \\c => gn.nom ++ sn.dep ! c ;
gn = gn.gn ;
p = gn.p
} ;
}