summaryrefslogtreecommitdiff
path: root/examples/lrec-tutorial/face
diff options
context:
space:
mode:
Diffstat (limited to 'examples/lrec-tutorial/face')
-rw-r--r--examples/lrec-tutorial/face/Face.gf14
-rw-r--r--examples/lrec-tutorial/face/FaceEn0.gf22
-rw-r--r--examples/lrec-tutorial/face/FaceEng.gf7
-rw-r--r--examples/lrec-tutorial/face/FaceFin.gf7
-rw-r--r--examples/lrec-tutorial/face/FaceI.gf17
-rw-r--r--examples/lrec-tutorial/face/FaceIta.gf8
-rw-r--r--examples/lrec-tutorial/face/LexFace.gf8
-rw-r--r--examples/lrec-tutorial/face/LexFaceEng.gf8
-rw-r--r--examples/lrec-tutorial/face/LexFaceFin.gf7
-rw-r--r--examples/lrec-tutorial/face/LexFaceIta.gf6
10 files changed, 0 insertions, 104 deletions
diff --git a/examples/lrec-tutorial/face/Face.gf b/examples/lrec-tutorial/face/Face.gf
deleted file mode 100644
index 9259363da..000000000
--- a/examples/lrec-tutorial/face/Face.gf
+++ /dev/null
@@ -1,14 +0,0 @@
-abstract Face = {
-
-flags startcat = Message ;
-
-cat
- Message ; Person ; Object ; Number ;
-fun
- Have : Person -> Number -> Object -> Message ;
- Like : Person -> Object -> Message ;
- You : Person ;
- Friend, Invitation : Object ;
- One, Two, Hundred : Number ;
-
-}
diff --git a/examples/lrec-tutorial/face/FaceEn0.gf b/examples/lrec-tutorial/face/FaceEn0.gf
deleted file mode 100644
index 2c4e7123b..000000000
--- a/examples/lrec-tutorial/face/FaceEn0.gf
+++ /dev/null
@@ -1,22 +0,0 @@
---# -path=.:present
-
-concrete FaceEn0 of Face = open SyntaxEng, ParadigmsEng in {
-lincat
- Message = Cl ;
- Person = NP ;
- Object = CN ;
- Number = Numeral ;
-lin
- Have p n o = mkCl p have_V2 (mkNP n o) ;
- Like p o = mkCl p like_V2 (mkNP this_Quant o) ;
- You = mkNP youSg_Pron ;
- Friend = mkCN friend_N ;
- Invitation = mkCN invitation_N ;
- One = n1_Numeral ;
- Two = n2_Numeral ;
- Hundred = n100_Numeral ;
-oper
- like_V2 = mkV2 "like" ;
- invitation_N = mkN "invitation" ;
- friend_N = mkN "friend" ;
-}
diff --git a/examples/lrec-tutorial/face/FaceEng.gf b/examples/lrec-tutorial/face/FaceEng.gf
deleted file mode 100644
index bac0b5f5a..000000000
--- a/examples/lrec-tutorial/face/FaceEng.gf
+++ /dev/null
@@ -1,7 +0,0 @@
---# -path=.:present
-
-concrete FaceEng of Face = FaceI with
- (Syntax = SyntaxEng),
- (LexFace = LexFaceEng) ;
-
-
diff --git a/examples/lrec-tutorial/face/FaceFin.gf b/examples/lrec-tutorial/face/FaceFin.gf
deleted file mode 100644
index 47b57ce29..000000000
--- a/examples/lrec-tutorial/face/FaceFin.gf
+++ /dev/null
@@ -1,7 +0,0 @@
---# -path=.:present
-
-concrete FaceFin of Face = FaceI with
- (Syntax = SyntaxFin),
- (LexFace = LexFaceFin) ;
-
-
diff --git a/examples/lrec-tutorial/face/FaceI.gf b/examples/lrec-tutorial/face/FaceI.gf
deleted file mode 100644
index b612dcdb8..000000000
--- a/examples/lrec-tutorial/face/FaceI.gf
+++ /dev/null
@@ -1,17 +0,0 @@
-incomplete concrete FaceI of Face = open Syntax, LexFace in {
-
-lincat
- Message = Cl ;
- Person = NP ;
- Object = CN ;
- Number = Numeral ;
-lin
- Have p n o = mkCl p have_V2 (mkNP n o) ;
- Like p o = mkCl p like_V2 (mkNP this_Quant o) ;
- You = mkNP youSg_Pron ;
- Friend = mkCN friend_N ;
- Invitation = mkCN invitation_N ;
- One = n1_Numeral ;
- Two = n2_Numeral ;
- Hundred = n100_Numeral ;
-}
diff --git a/examples/lrec-tutorial/face/FaceIta.gf b/examples/lrec-tutorial/face/FaceIta.gf
deleted file mode 100644
index 7e512ce6d..000000000
--- a/examples/lrec-tutorial/face/FaceIta.gf
+++ /dev/null
@@ -1,8 +0,0 @@
---# -path=.:present
-
-concrete FaceIta of Face = FaceI - [Like] with
- (Syntax = SyntaxIta),
- (LexFace = LexFaceIta) ** open SyntaxIta in {
-lin Like p o =
- mkCl (mkNP this_Quant o) like_V2 p ;
-}
diff --git a/examples/lrec-tutorial/face/LexFace.gf b/examples/lrec-tutorial/face/LexFace.gf
deleted file mode 100644
index db60ab8fd..000000000
--- a/examples/lrec-tutorial/face/LexFace.gf
+++ /dev/null
@@ -1,8 +0,0 @@
-interface LexFace = open Syntax in {
-
-oper
- like_V2 : V2 ;
- invitation_N : N ;
- friend_N : N ;
-
-}
diff --git a/examples/lrec-tutorial/face/LexFaceEng.gf b/examples/lrec-tutorial/face/LexFaceEng.gf
deleted file mode 100644
index 042d19923..000000000
--- a/examples/lrec-tutorial/face/LexFaceEng.gf
+++ /dev/null
@@ -1,8 +0,0 @@
-instance LexFaceEng of LexFace = open SyntaxEng, ParadigmsEng in {
-
-oper
- like_V2 = mkV2 "like" ;
- invitation_N = mkN "invitation" ;
- friend_N = mkN "friend" ;
-
-}
diff --git a/examples/lrec-tutorial/face/LexFaceFin.gf b/examples/lrec-tutorial/face/LexFaceFin.gf
deleted file mode 100644
index f43dbb022..000000000
--- a/examples/lrec-tutorial/face/LexFaceFin.gf
+++ /dev/null
@@ -1,7 +0,0 @@
-instance LexFaceFin of LexFace = open SyntaxFin, ParadigmsFin in {
-
-oper
- like_V2 = mkV2 (mkV "pitää") elative ;
- invitation_N = mkN "kutsu" ;
- friend_N = mkN "ystävä" ;
-}
diff --git a/examples/lrec-tutorial/face/LexFaceIta.gf b/examples/lrec-tutorial/face/LexFaceIta.gf
deleted file mode 100644
index ce03ef126..000000000
--- a/examples/lrec-tutorial/face/LexFaceIta.gf
+++ /dev/null
@@ -1,6 +0,0 @@
-instance LexFaceIta of LexFace = open SyntaxIta, ParadigmsIta in {
-oper
- like_V2 = mkV2 (mkV (piacere_64 "piacere")) dative ;
- invitation_N = mkN "invito" ;
- friend_N = mkN "amico" ;
-}