Skip to content

Instantly share code, notes, and snippets.

@dmkolobov
Last active October 24, 2017 22:30
Show Gist options
  • Save dmkolobov/5ac88d2bc1129a0920f67647624a02d1 to your computer and use it in GitHub Desktop.
Save dmkolobov/5ac88d2bc1129a0920f67647624a02d1 to your computer and use it in GitHub Desktop.
Hello!
```
bool ::= or | and
or ::= bool '||' bool
and ::= and '&&' not | not
not ::= '!' comp | comp
comp ::= (id ('<' | '>' | '<=' | '>=' | '=') id) | '(' bool ')'
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment