updated tutorial up to lexers ; fixed lexcode in GF (was wrong due to a typo)

This commit is contained in:
aarne
2008-11-10 10:59:13 +00:00
parent eedd209458
commit 87c6bebf29
4 changed files with 44 additions and 29 deletions

View File

@@ -1,6 +1,6 @@
--# -path=.:../foods:present:prelude
instance LexFoodsFre of LexFoods = open SyntaxFre,ParadigmsFre in {
instance LexFoodsFre of LexFoods = open SyntaxFre,ParadigmsFre,IrregFre in {
oper
wine_N = mkN "vin" ;
pizza_N = mkN "pizza" feminine ;
@@ -12,4 +12,9 @@ instance LexFoodsFre of LexFoods = open SyntaxFre,ParadigmsFre in {
expensive_A = mkA "cher" ;
delicious_A = mkA "délicieux" ;
boring_A = mkA "ennuyeux" ;
drink_V2 = boire_V2 ;
eat_V2 = mkV2 (mkV "manger") ;
pay_V2 = mkV2 (mkV "payer") ;
gentleman_N = mkN "monsieur" "messieurs" masculine ;
lady_N = mkN "madame" "mesdames" feminine ;
}