1
0
forked from GitHub/gf-core

Moved the different versions of the toy0 concrete modules to different subdirectories.

This commit is contained in:
bringert
2007-06-27 12:38:24 +00:00
parent 67857cb146
commit 54d5325171
7 changed files with 7 additions and 4 deletions

View File

@@ -0,0 +1,6 @@
--# -path=..:present:prelude
concrete Toy0GerE of Toy0 = Toy0IE with
(Grammar = GrammarGer),
(Lexicon = LexiconGer) ;

View File

@@ -0,0 +1,23 @@
--# -resource=present/LangEng.gfc
--# -path=..:present:prelude
-- to compile: gf -examples Toy0IE.gfe
incomplete concrete Toy0IE of Toy0 = open Grammar, Lexicon in {
lincat
Spec = Det ;
Noun = N ;
NP = Utt ;
lin
SpecNoun every_Det house_N = in Utt "every house" ;
One = in Det "one" ;
Two = in Det "two" ;
Felis = in N "cat" ;
Canis = in N "dog" ;
}