mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-17 08:49:31 -06:00
31 lines
721 B
Plaintext
31 lines
721 B
Plaintext
concrete GreetingsEng of Greetings = open 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" ;
|
|
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" ;
|
|
GCheers = ss "cheers" ;
|
|
|
|
GYes = ss "yes" ;
|
|
GNo = ss "no" ;
|
|
|
|
|
|
}
|