1
0
forked from GitHub/gf-core
Files
gf-core/examples/stoneage/StoneageResSwe.gf
2005-03-02 13:48:06 +00:00

13 lines
417 B
Plaintext

resource StoneageResSwe = open ResourceSwe, ParadigmsSwe in {
oper
PresV : V -> NP -> S = \v,s -> PresCl (SPredV s v) ;
PresV2 : V2 -> NP -> NP -> S = \v,s,o -> PresCl (SPredV2 s v o) ;
PresVasV2 : V -> NP -> NP -> S = \ v -> PresV2 (dirV2 v) ;
PresCl : Cl -> S = UseCl (PosTP TPresent ASimul) ;
ModPosA : ADeg -> CN -> CN = \a -> ModAP (PositADeg a) ;
ModA : A -> CN -> CN = \a -> ModAP (UseA a) ;
}