Initial import to Tizen
[profile/ivi/sphinxbase.git] / test / regression / polite.gram
1 #JSGF V1.0;
2
3 /**
4  * JSGF Grammar for Hello World example
5  */
6
7 grammar polite;
8
9 public <startPolite> = [please | kindly | could you | oh mighty computer];
10 public <endPolite> = [please | thanks | thank you];
11
12 public <allPolite> = (<startPolite> | <endPolite>)*;