Files
gf-rgl/src/ancient_greek/CombinatorsGrc.gf
hallgren ffe2a1aedb Enable compilation of Ancient Greek in Setup.hs
Also adjust the -path pragmas in a few places in lib/src/ancient_greek
2016-06-02 13:56:19 +00:00

16 lines
413 B
Plaintext

-- --# -path=.:alltenses:prelude
resource CombinatorsGrc = Combinators - [appCN, appCNc] with
(Cat = CatGrc),
(Structural = StructuralGrc),
(Noun = NounGrc),
(Constructors = ConstructorsGrc) **
{
oper
appCN : CN -> NP -> NP
= \cn,x -> mkNP the_Art (PossNP cn x) ;
appCNc : CN -> [NP] -> NP
= \cn,xs -> let np : NP = mkNP and_Conj xs
in mkNP the_Art (PossNP cn np) ;
}