Skip to content
Snippets Groups Projects
Forked from CLF / Robocup / Pocketsphinx Configs
1358 commits behind the upstream repository.
ordering.jsgf 431 B
#JSGF V1.0;
grammar restaurant_ordering;

public <restaurant> = [tobi] [please] bring <objects> to <deliveryLocations>;

<deliveryLocations> = table <numberOfTable>;

<numberOfTable> = one | two | three;

<objects> = <drinks> | <snacks>;

<drinks> = (orange juice) | beer | cola | chocolate_milk | energy_drink | grape_juice | milk | water;
<snacks> = chocolate_cookies | chips | biscuits | bread | pringles | (strawberry cookies);