Skip to content
Snippets Groups Projects
saveCommand.jsgf 363 B
Newer Older
  • Learn to ignore specific revisions
  • alangfel's avatar
    alangfel committed
    #JSGF V1.0;
    grammar restaurant_save_command;
    
    public <restaurant> = [tobi] [please] save ( <deliveryLocations> | <objectCategory> ) [[to | on] [the | my] ( <savePlaceLeft> | <savePlaceRight> )];
    <savePlaceLeft> = left;
    <savePlaceRight> = right;
    
    alangfel's avatar
    alangfel committed
    <deliveryLocations> = table <numberOfTable>;
    <numberOfTable> = one | two | three;
    
    alangfel's avatar
    alangfel committed
    <objectCategory> = drinks | snacks;