Adds the equal sign (`=`) for use in `src/Terminal/Parser.ts`
This commit is contained in:
RevanProdigalKnight 2022-05-04 00:47:58 -06:00 committed by GitHub
parent 36db849ff1
commit df30771744
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -25,6 +25,7 @@ export enum KEY {
CLOSE_PARENTHESIS = ")",
OPEN_BRACE = "{",
CLOSE_BRACE = "}",
EQUAL = "=",
PIPE = "|",
DOT = ".",