File size: 295 Bytes
5610573 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #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;
|