diff options
| author | Baitinq <[email protected]> | 2025-05-19 23:12:24 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-05-19 23:12:24 +0200 |
| commit | 65d7ae71c822fd4adcd098c4c1f7753fa28e34d3 (patch) | |
| tree | 21d5ecf72da96038c7891750661e7964f7b44e79 /grammar.ebnf | |
| parent | Bootstra: Tokenizer: Allocate more memory for tokens (diff) | |
| download | interpreter-65d7ae71c822fd4adcd098c4c1f7753fa28e34d3.tar.gz interpreter-65d7ae71c822fd4adcd098c4c1f7753fa28e34d3.tar.bz2 interpreter-65d7ae71c822fd4adcd098c4c1f7753fa28e34d3.zip | |
Feature: Add support for !=
Diffstat (limited to 'grammar.ebnf')
| -rw-r--r-- | grammar.ebnf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grammar.ebnf b/grammar.ebnf index 15de75f..bd38952 100644 --- a/grammar.ebnf +++ b/grammar.ebnf @@ -20,7 +20,7 @@ FunctionArguments ::= Expression ("," Expression)* Expression ::= EqualityExpression | AdditiveExpression -EqualityExpression ::= AdditiveExpression ("==" | "<=" | ">=" | "<" | ">") AdditiveExpression +EqualityExpression ::= AdditiveExpression ("==" | "!=" | "<=" | ">=" | "<" | ">") AdditiveExpression AdditiveExpression ::= MultiplicativeExpression (("+" | "-") MultiplicativeExpression)* |