Skip to content
Snippets Groups Projects
ordering.jsgf 331 B
Newer Older
  • Learn to ignore specific revisions
  • alangfel's avatar
    alangfel committed
    #JSGF V1.0;
    grammar restaurant_ordering;
    
    public <restaurant> = [tobi] [please] bring <objects> to table <deliveryLocations>;
    
    <deliveryLocations> = table (one | two | three);
    
    <objects> = <drinks> | <snacks>;
    
    <drinks> = (orange juice) | (fruit juice) | (ice tea) | coffee | beer;
    <snacks> = chocolates | (chewing gum) | peanuts;