summaryrefslogtreecommitdiff
path: root/examples/bronzeage/Bronzeage.gf
diff options
context:
space:
mode:
authorjohn.j.camilleri <john.j.camilleri@chalmers.se>2013-09-16 07:17:27 +0000
committerjohn.j.camilleri <john.j.camilleri@chalmers.se>2013-09-16 07:17:27 +0000
commitf5461eb3d4eb2605b546a4ed202c12bcdaa1f4e4 (patch)
tree946c9e8542b8e8271b6b529a95c0400fa6613cb4 /examples/bronzeage/Bronzeage.gf
parent8e1c6cca407c82fc09569d80c231b8d256735989 (diff)
Remove contribs and examples
Everything has now been moved to a separate repository at https://github.com/GrammaticalFramework/gf-contrib The contents of the examples folder are build during SetupWeb
Diffstat (limited to 'examples/bronzeage/Bronzeage.gf')
-rw-r--r--examples/bronzeage/Bronzeage.gf58
1 files changed, 0 insertions, 58 deletions
diff --git a/examples/bronzeage/Bronzeage.gf b/examples/bronzeage/Bronzeage.gf
deleted file mode 100644
index bf8f8fff2..000000000
--- a/examples/bronzeage/Bronzeage.gf
+++ /dev/null
@@ -1,58 +0,0 @@
-abstract Bronzeage = Swadesh ** {
-
- flags startcat = Phr ;
-
- cat
- Phr ;
- Imp ;
- Cl ;
- CN ;
-
- V ;
- V2 ;
- V3 ;
- A ;
- Pron ;
- Det ;
- Card ;
- Prep ;
-
- MassCN ;
-
- fun
- PhrPos : Cl -> Phr ;
- PhrNeg : Cl -> Phr ;
- PhrQuest : Cl -> Phr ;
- PhrIAdv : IAdv -> Cl -> Phr ;
- PhrImp : Imp -> Phr ;
- PhrImpNeg : Imp -> Phr ;
-
- SentV : V -> NP -> Cl ;
- SentV2 : V2 -> NP -> NP -> Cl ;
- SentV2Mass : V2 -> NP -> MassCN -> Cl ;
- SentV3 : V3 -> NP -> NP -> NP -> Cl ;
- SentA : A -> NP -> Cl ;
- SentNP : NP -> NP -> Cl ;
-
- SentAdvV : V -> NP -> Adv -> Cl ;
- SentAdvV2 : V2 -> NP -> NP -> Adv -> Cl ;
-
- ImpV : V -> Imp ;
- ImpV2 : V2 -> NP -> Imp ;
-
- DetCN : Det -> CN -> NP ;
- NumCN : Card -> CN -> NP ;
-
- UseN : N -> CN ;
- ModCN : A -> CN -> CN ;
-
- UseMassN : MassN -> MassCN ;
- ModMass : A -> MassCN -> MassCN ;
-
--- new
- DefCN : CN -> NP ;
- IndefCN : CN -> NP ;
- PrepNP : Prep -> NP -> Adv ;
- on_Prep : Prep ;
-
-}