mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-06-14 01:20:11 -06:00
10 lines
197 B
Plaintext
10 lines
197 B
Plaintext
concrete NamesChi of Names = CatChi ** {
|
|
|
|
lin GivenName, MaleSurname, FemaleSurname, PlSurname = \n -> n ** {det = []} ;
|
|
lin FullName gn sn = {
|
|
s = gn.s ++ sn.s ;
|
|
det = []
|
|
} ;
|
|
|
|
}
|