mirror of
https://github.com/cmusphinx/pocketsphinx.git
synced 2026-06-16 12:24:32 +00:00
git-svn-id: svn+ssh://svn.code.sf.net/p/cmusphinx/code/trunk/pocketsphinx@9854 94700074-3cef-4d97-a70e-9c8c206c02f5
16 lines
295 B
Plaintext
16 lines
295 B
Plaintext
#JSGF V1.0;
|
|
|
|
/**
|
|
* JSGF Grammar for Turtle example
|
|
*/
|
|
|
|
grammar goforward;
|
|
|
|
public <move> = go forward ten meters;
|
|
|
|
public <move2> = go <direction> <distance> [meter | meters];
|
|
|
|
<direction> = forward | backward;
|
|
|
|
<distance> = one | two | three | four | five | six | seven | eight | nine | ten;
|