forked from Mirrors/freeswitch
15 lines
142 B
Plaintext
15 lines
142 B
Plaintext
|
#JSGF V1.0;
|
||
|
|
||
|
/**
|
||
|
* JSGF Grammar for example
|
||
|
*/
|
||
|
|
||
|
grammar example;
|
||
|
|
||
|
<yes> = [ yes ];
|
||
|
<no> = [ no ];
|
||
|
|
||
|
public <results> = [ <yes> | <no> ];
|
||
|
|
||
|
|