Skip to content

Instantly share code, notes, and snippets.

@Ch3shireDev
Created December 1, 2019 19:45
Show Gist options
  • Select an option

  • Save Ch3shireDev/8debf6274cb2d2905cb46660e85417cb to your computer and use it in GitHub Desktop.

Select an option

Save Ch3shireDev/8debf6274cb2d2905cb46660e85417cb to your computer and use it in GitHub Desktop.
grammar.ebnf
@@grammar::Something
start = expression $ ;
expression = term [or ~ expression];
term = factor [and ~ term];
factor
=
| 'ciasteczko jest dobre'
| '(' ~ @:expression ')'
| condition
;
condition = ?/[\w]+/?;
and = 'and';
or = 'or';
operator = and|or;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment