13 lines
260 B
Plaintext
13 lines
260 B
Plaintext
|
#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>)*;
|