Fixed incorrect operator symbol

This commit is contained in:
Eduard Urbach 2024-06-16 23:06:21 +02:00
parent 8b49200a87
commit 086998a0c3
Signed by: akyoto
GPG Key ID: C874F672B1AF20C0

View File

@ -14,7 +14,7 @@ type Operator struct {
var Operators = map[string]*Operator{ var Operators = map[string]*Operator{
".": {".", 14, 2}, ".": {".", 14, 2},
"λ": {"λ", 13, 1}, "λ": {"λ", 13, 1},
"!": {"λ", 12, 1}, "!": {"!", 12, 1},
"*": {"*", 11, 2}, "*": {"*", 11, 2},
"/": {"/", 11, 2}, "/": {"/", 11, 2},
"%": {"%", 11, 2}, "%": {"%", 11, 2},