Skip to content

Commit

Permalink
WIP - towards getting operators sorted out
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky committed Nov 21, 2024
1 parent ad488f8 commit df19189
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mathics_scanner/tokeniser.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
)
full_names_pattern = r"(`?{0}(`{0})*)".format(base_names_pattern)

# FIXME: Revise to get Character Symbols from data/characters.json
tokens = [
("Definition", r"\? "),
("Information", r"\?\? "),
Expand Down Expand Up @@ -180,6 +181,7 @@
("Cup", r" \u2323 "),
("CirclePlus", r" \u2295 "),
("CircleMinus", r" \u2296 "),
("Congruent", r" \u2261 "),
("Intersection", r" \u22c2 "),
("Union", r" \u22c3 "),
("VerticalBar", r" \u2223 "),
Expand Down

0 comments on commit df19189

Please sign in to comment.