mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-06-12 16:40:11 -06:00
25 lines
570 B
Plaintext
25 lines
570 B
Plaintext
--# -path=alltenses:../common:../abstract:../romance
|
|
concrete ExtendCat of Extend = CatCat ** ExtendRomanceFunctor-- -
|
|
-- [
|
|
-- ]
|
|
-- don't forget to put the names of your own
|
|
-- definitions here
|
|
with
|
|
(Grammar = GrammarCat), (Syntax = SyntaxCat), (ResRomance = ResCat) **
|
|
open
|
|
GrammarCat,
|
|
ResCat,
|
|
MorphoCat,
|
|
Coordination,
|
|
Prelude,
|
|
ParadigmsCat in {
|
|
-- put your own definitions here
|
|
|
|
lin GivenName, MaleSurname, FemaleSurname = \n -> n ;
|
|
lin FullName gn sn = {
|
|
s = gn.s ++ sn.s ;
|
|
g = gn.g
|
|
} ;
|
|
|
|
} ;
|