This commit is contained in:
agra
2026-02-20 13:28:38 +02:00
parent 5956303366
commit 6f927361aa
9 changed files with 657 additions and 36 deletions

View File

@@ -67,6 +67,7 @@ pub const Tag = enum {
at, // @
pipe, // |
pipe_equal, // |=
pipe_arrow, // |>
caret, // ^
caret_equal, // ^=
tilde, // ~
@@ -134,6 +135,7 @@ pub const Tag = enum {
.at => "@",
.pipe => "|",
.pipe_equal => "|=",
.pipe_arrow => "|>",
.caret => "^",
.caret_equal => "^=",
.tilde => "~",