1
0
forked from GitHub/gf-core
Files
gf-core/examples/phrasebook/GreetingsEng.gf
2010-03-31 14:58:32 +00:00

31 lines
764 B
Plaintext

concrete GreetingsEng of Greetings = open Roles, Prelude in {
lincat
Greeting = SS ;
lin
GHello = ss "hello" ;
GThanks = ss "thank you" ;
GHowAreYou = ss "how are you" ;
GPleaseGive, GPleaseGivePol = ss "please" ;
GExcuse, GExcusePol = ss "excuse me" ;
GSorry, GSorryPol = ss "sorry" ;
GGoodbye = ss "goodbye" ;
GBye = ss "bye" ;
GWhatsYourName, GWhatsYourNamePol = 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" ;
GTheCheck = ss "the bill" ;
GYes = ss "yes" ;
GNo = ss "no" ;
}