Fixed incorrect operator symbol

This commit is contained in:
Eduard Urbach 2024-06-16 23:06:21 +02:00
parent 50fe557056
commit cd1fe5eebb
Signed by: eduard
GPG key ID: 49226B848C78F6C8

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},