diff options
| author | aarne <aarne@chalmers.se> | 2010-03-21 17:42:11 +0000 |
|---|---|---|
| committer | aarne <aarne@chalmers.se> | 2010-03-21 17:42:11 +0000 |
| commit | df0c6fb8d3acb525e7cdf520b5c51d967d12567e (patch) | |
| tree | 2991bc8a9e9c4f86d1e6214f1100397070f42a2e /examples/phrasebook/GreetingsEng.gf | |
| parent | f4574a4cfa97e8f501967cf86f33beaf105d0497 (diff) | |
English version of Phrasebook
Diffstat (limited to 'examples/phrasebook/GreetingsEng.gf')
| -rw-r--r-- | examples/phrasebook/GreetingsEng.gf | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/examples/phrasebook/GreetingsEng.gf b/examples/phrasebook/GreetingsEng.gf new file mode 100644 index 000000000..6ed3ff947 --- /dev/null +++ b/examples/phrasebook/GreetingsEng.gf @@ -0,0 +1,36 @@ +concrete GreetingsEng of Greetings = open Prelude in { + +lincat + Greeting, Politeness = SS ; + +lin + GHello = ss "hello" ; + GThanks = ss "thank you" ; + GHowAreYou = ss "how are you" ; + GPleaseGive = ss "please" ; + GExcuse = ss "excuse me" ; + GSorry = ss "sorry" ; + GGoodbye = ss "goodbye" ; + GBye = ss "bye" ; + GWhatsYourName = ss "what's your name" ; + GNiceToMeetYou = ss "nice to meet you" ; + GSeeYouSoon = ss "see you soon" ; + GHelp = ss "help" ; + GLookOut = ss "look out" ; + GGoodMorning = ss "good morning" ; + GGoodDay = ss "good afternoon" ; ---- + GGoodEvening = ss "good evening" ; + GGoodNight = ss "good night" ; + GImHungry = ss "I'm hungry" ; + GImThirsty = ss "I'm thirsty" ; + GImTired = ss "I'm tired" ; + GImScared = ss "I'm scared" ; + GIdontUnderstand = ss "I don't understand" ; + GWheresTheBathroom = ss "where's the bathroom" ; + GTheCheck = ss "the bill" ; + + GYes = ss "yes" ; + GNo = ss "no" ; + + +} |
