aboutsummaryrefslogtreecommitdiff
path: root/grammar.ebnf
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-07-06 03:33:04 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-07-06 03:49:03 +0200
commitd3c95ef09fd493241273d6e63aca31d703c2503c (patch)
tree94dc719ed4eb4a3bc67c35b19bca69916b56fc32 /grammar.ebnf
parentb0b7d209fa978ff4a6b9c8cc5a8e4a3207cdd63f (diff)
Implement booleans
Diffstat (limited to 'grammar.ebnf')
-rw-r--r--grammar.ebnf2
1 files changed, 2 insertions, 0 deletions
diff --git a/grammar.ebnf b/grammar.ebnf
index a5f5e50..b28e0ac 100644
--- a/grammar.ebnf
+++ b/grammar.ebnf
@@ -54,12 +54,14 @@ unop
binop
: '+'
+ | '!='
| '%'
| '&'
| '*'
| '-'
| '/'
| '<<'
+ | '=='
| '>>'
| '|'
| '~'