mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-06-14 09:30:13 -06:00
15 lines
253 B
Plaintext
15 lines
253 B
Plaintext
concrete ExtendAfr of Extend =
|
|
CatAfr ** ExtendFunctor
|
|
with
|
|
(Grammar = GrammarAfr) **
|
|
|
|
open
|
|
ResAfr in {
|
|
|
|
lin GivenName, MaleSurname, FemaleSurname = \n -> n ;
|
|
lin FullName gn sn = {
|
|
s = \\c => gn.s ! NPNom ++ sn.s ! c ;
|
|
} ;
|
|
|
|
}
|