summaryrefslogtreecommitdiff
path: root/doc/tutorial/resource/LexEng.gf
diff options
context:
space:
mode:
authoraarne <aarne@cs.chalmers.se>2008-06-27 11:27:40 +0000
committeraarne <aarne@cs.chalmers.se>2008-06-27 11:27:40 +0000
commit032531c6a690edbb377ff11ee2a743a30c5bf500 (patch)
tree21842e9061dc8dd54e2666c65160d2616537dae7 /doc/tutorial/resource/LexEng.gf
parente4e64c13a69db6505df499a0c3445ada9b1b2d88 (diff)
rm old tutorials
Diffstat (limited to 'doc/tutorial/resource/LexEng.gf')
-rw-r--r--doc/tutorial/resource/LexEng.gf34
1 files changed, 0 insertions, 34 deletions
diff --git a/doc/tutorial/resource/LexEng.gf b/doc/tutorial/resource/LexEng.gf
deleted file mode 100644
index c939aac9f..000000000
--- a/doc/tutorial/resource/LexEng.gf
+++ /dev/null
@@ -1,34 +0,0 @@
---# -path=.:prelude
-
-resource LexEng = open SyntaxEng, MorphoEng, Prelude in {
-
- oper
-
- -- constructors for open lexicon
-
- mkN : (man,men : Str) -> CN ;
- regN : (car : Str) -> CN ;
-
- mkA : (hot : Str) -> AP ;
-
- mkV : (go,goes : Str) -> V ;
- regV : (walk : Str) -> V ;
-
- mkV2 : (look : V) -> (at : Str) -> V2 ;
- dirV2 : (eat : V) -> V2 ;
-
- --------------------------------------------
- -- definitions, hidden from users
-
- mkN x y = mkNoun x y ** {lock_CN = <>} ;
- regN x = regNoun x ** {lock_CN = <>} ;
-
- mkA x = ss x ** {lock_AP = <>} ;
-
- mkV x y = mkVerb x y ** {lock_V = <>} ;
- regV x = regVerb x ** {lock_V = <>} ;
-
- mkV2 x p = x ** {c = p ; lock_V2 = <>} ;
- dirV2 x = mkV2 x [] ;
-
-}