Fixed incorrect operator symbol
This commit is contained in:
parent
8b49200a87
commit
086998a0c3
@ -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},
|
||||||
|
Loading…
Reference in New Issue
Block a user