Skip to content
Snippets Groups Projects
command.jsgf 486 B
Newer Older
  • Learn to ignore specific revisions
  • alangfel's avatar
    alangfel committed
    #JSGF V1.0;
    grammar restaurant_command;
    
    public <restaurant> = [tobi] [please] <command> [please] [tobi];
    <command> = <followMe> | <stop> | <ordering> | <savePlaceLeft> | <savePlaceRight> | <savePlace>;
    <followMe> = (follow me) | (come [(with me) | here]) | (keep up);
    <stop> = stop [this];
    
    alangfel's avatar
    alangfel committed
    <ordering> = ordering;
    
    alangfel's avatar
    alangfel committed
    <savePlaceLeft> = left;
    <savePlaceRight> = right;
    <savePlace> = <save>;
    <save> = save [the] (place | location) [[to | on] [the | my] (<savePlaceRight> | <savePlaceLeft>)];