mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-06-15 10:00:11 -06:00
15 lines
284 B
Plaintext
15 lines
284 B
Plaintext
abstract Names = Cat ** {
|
|
|
|
fun GivenName : GN -> NP ;
|
|
MaleSurname : SN -> NP ;
|
|
FemaleSurname : SN -> NP ;
|
|
PlSurname : SN -> NP ;
|
|
FullName : GN -> SN -> NP ;
|
|
|
|
fun UseLN : LN -> NP ;
|
|
PlainLN : LN -> NP ;
|
|
InLN : LN -> Adv ;
|
|
AdjLN : AP -> LN -> LN ;
|
|
|
|
}
|