summaryrefslogtreecommitdiff
path: root/examples/travel/Essential.gf
blob: f90dc45b68a75fc09769616f0167dd93fbedb593 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
-- the essential phrases from Lone Planet Thai Phrasebook

abstract Essential = {

cat 
  Phrase ;
  Number ;

fun
  Hello           : Phrase ;
  Goodbye         : Phrase ;
  Please          : Phrase ;
  ThankYou        : Phrase ;
  YoureWelcome    : Phrase ;
  Yes             : Phrase ;
  No              : Phrase ;
  ExcuseAttention : Phrase ;
  ExcuseGetPast   : Phrase ;
  Sorry           : Phrase ;
  IUnderstand     : Phrase ;
  IDontUnderstand : Phrase ;
  Help            : Phrase ;
  WhereAreToilets : Phrase ;

  
  SayNumber : Number -> Phrase ;

  One, Two, Three, Four, Five, Six, Seven, Eight, Nine, Ten : Number ;

}