File size: 260 Bytes
5610573 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #JSGF V1.0;
/**
* JSGF Grammar for Hello World example
*/
grammar polite;
public <startPolite> = [please | kindly | could you | oh mighty computer];
public <endPolite> = [please | thanks | thank you];
public <allPolite> = (<startPolite> | <endPolite>)*;
|