Skip to content
Snippets Groups Projects
learning.jsgf 403 B
#JSGF V1.0;
grammar learning;

public <command> = [tobi] (<save> | <stop> );

<NP_location> = ([the] <location>);

<save> = <pre> <NP_location>;
<pre> = ([please] save) | (here is) | memorize;
<location> = (table <numberOfTable>) | (shelf) | (bar) | (bin) | (garbage collection);
<numberOfTable> = (one | two | three | four | five | six | seven | eight | nine);

<stop> = (stop the task) | (wait here);