I want phrases in thai travel

This commit is contained in:
aarne
2007-03-28 14:40:29 +00:00
parent a7e57ba296
commit e128d6505a
7 changed files with 29 additions and 16 deletions

View File

@@ -66,21 +66,20 @@ printname cat
Kind = "what kind of product do you mean?" ;
lin
HowMuchCost p = {s = ["how much does"] ++
variants {
p.s ;
-- no kind given
"this" ;
-- no product given at all
"it"
} ++
"cost"} ;
HowMuchCost p = {s = ["how much does"] ++ item p ++ "cost"} ;
IWantToHave p = {s = ["I would like to have"] ++ item p} ;
This k = {s = "this" ++ k.s} ;
This k = {s = "this" ++ variants {k.s ; []}} ;
Beer = {s = "beer"} ;
Shirt = {s = "shirt"} ;
oper
item : SS -> Str = \p ->
variants {
p.s ;
-- no product given at all
"it"
} ;
}