Add RBTREE and test, along with <, >, <=, >=

This commit is contained in:
2023-02-14 13:18:19 -05:00
parent f568ee3d50
commit 520e473415
2 changed files with 76 additions and 3 deletions

View File

@@ -24,8 +24,8 @@ match {
".",
"'",
"!",
r"[0-9]+" => NUM,
r"[a-zA-Z+*/_=?%&|^-][\w+*/=_?%&|^-]*" => SYM,
r"(;[^\n]*\n)|\s+" => { }
r"[0-9]+" => NUM,
r"[a-zA-Z+*/_=?%&|^<>-][\w+*/=_?%&|^<>-]*" => SYM,
r"(;[^\n]*\n)|\s+" => { }
}