summaryrefslogtreecommitdiff
path: root/examples/tutorial/syntax/TestIta.gf
diff options
context:
space:
mode:
authoraarne <aarne@cs.chalmers.se>2007-08-28 20:44:41 +0000
committeraarne <aarne@cs.chalmers.se>2007-08-28 20:44:41 +0000
commit5a6d513a0eceba7320f9ecd868ccaf67572193ae (patch)
treeccebe13d78eeca238ec7081fae9aac33fb3290a7 /examples/tutorial/syntax/TestIta.gf
parent8747b745240b047ed1f69d12351d8ade89fafdd6 (diff)
chap on syntax and morpho
Diffstat (limited to 'examples/tutorial/syntax/TestIta.gf')
-rw-r--r--examples/tutorial/syntax/TestIta.gf32
1 files changed, 16 insertions, 16 deletions
diff --git a/examples/tutorial/syntax/TestIta.gf b/examples/tutorial/syntax/TestIta.gf
index d58b258cd..0066deac2 100644
--- a/examples/tutorial/syntax/TestIta.gf
+++ b/examples/tutorial/syntax/TestIta.gf
@@ -3,21 +3,21 @@
concrete TestIta of Test = SyntaxIta ** open Prelude, MorphoIta in {
lin
- Wine = regNoun "vino" ;
- Cheese = regNoun "formaggio" ;
- Fish = regNoun "pesce" ;
- Pizza = regNoun "pizza" ;
- Waiter = regNoun "cameriere" ;
- Customer = regNoun "cliente" ;
- Fresh = regAdjective "fresco" ;
- Warm = regAdjective "caldo" ;
- Italian = regAdjective "italiano" ;
- Expensive = regAdjective "caro" ;
- Delicious = regAdjective "delizioso" ;
- Boring = regAdjective "noioso" ;
- Stink = regVerb "puzzare" ;
- Eat = regVerb "mangiare" ** {c = []} ;
- Love = regVerb "amare" ** {c = []} ;
- Talk = regVerb "parlare" ** {c = "di"} ;
+ wine_N = regNoun "vino" ;
+ cheese_N = regNoun "formaggio" ;
+ fish_N = regNoun "pesce" ;
+ pizza_N = regNoun "pizza" ;
+ waiter_N = regNoun "cameriere" ;
+ customer_N = regNoun "cliente" ;
+ fresh_A = regAdjective "fresco" ;
+ warm_A = regAdjective "caldo" ;
+ italian_A = regAdjective "italiano" ;
+ expensive_A = regAdjective "caro" ;
+ delicious_A = regAdjective "delizioso" ;
+ boring_A = regAdjective "noioso" ;
+ stink_V = regVerb "puzzare" ;
+ eat_V2 = regVerb "mangiare" ** {c = []} ;
+ love_V2 = regVerb "amare" ** {c = []} ;
+ talk_V2 = regVerb "parlare" ** {c = "di"} ;
}