moved phrases like 'I am hungry' from Greetings to Words to make them more general

This commit is contained in:
aarne
2010-03-30 21:48:24 +00:00
parent b4abd2ebba
commit 4867b91778
18 changed files with 61 additions and 57 deletions

View File

@@ -42,4 +42,11 @@ concrete WordsFin of Words = SentencesFin **
French = mkNP (mkPN "ranska") ;
Romanian = mkNP (mkPN "romania") ;
Swedish = mkNP (mkPN "ruotsi") ;
AHungry p = mkCl p have_V2 (mkNP (mkN "nälkä")) ;
AThirsty p = mkCl p have_V2 (mkNP (mkN "jano")) ;
ATired p = mkCl p (caseV partitive (mkV "väsyttää")) ;
AScared p = mkCl p (caseV partitive (mkV "pelottaa")) ;
AUnderstand p = mkCl p (mkV "ymmärtää") ;
}