mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-05-03 16:22:52 -06:00
14 lines
442 B
Plaintext
14 lines
442 B
Plaintext
concrete SentencesUrd of Sentences = NumeralUrd ** SentencesI - [sing,YouFamFemale] with
|
|
(Syntax = SyntaxUrd),
|
|
(Symbolic = SymbolicUrd),
|
|
(Lexicon = LexiconUrd) **
|
|
open
|
|
(S=SyntaxUrd),
|
|
(P=ParadigmsUrd) in {
|
|
lin YouFamFemale = mkPersonUrd youSg_Pron "تیری" ;
|
|
|
|
oper
|
|
mkPersonUrd : Pron -> Str -> {name : NP ; isPron : Bool ; poss : Quant} = \p,s ->
|
|
{name = mkNP (P.mkN s) ; isPron = True ; poss = mkQuant p} ;
|
|
} ;
|