Skip to content
Snippets Groups Projects
Commit 3c258dff authored by Josef Harin's avatar Josef Harin
Browse files

Fix Grammar through adding ;

parent 350e2108
No related branches found
No related tags found
No related merge requests found
......@@ -3,8 +3,8 @@ grammar commands;
public <command> = [(tobi | tiago)] ( <ask_for_food> | <ask_for_bill_or_order>| yes | no | <stop> );
<ask_for_food> = [i would like to get | give me | bring me | can i have] [a | an] <food>
<ask_for_bill_or_order> = [please] [i would like to get | give me | bring me | can i have | i would like to | i would | let me | i will | i want to | set up] [the] <bill_or_order>
<bill_or_order> = (bill | order)
<food> = (cereals | smacks | milk | pringles | soda | coconut milk | tea | apple)
<ask_for_food> = [i would like to get | give me | bring me | can i have] [a | an] <food>;
<ask_for_bill_or_order> = [please] [i would like to get | give me | bring me | can i have | i would like to | i would | let me | i will | i want to | set up] [the] <bill_or_order>;
<bill_or_order> = (bill | order);
<food> = (cereals | smacks | milk | pringles | soda | coconut milk | tea | apple);
<stop>=(stop);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment