Fixed incorrect operator symbol
This commit is contained in:
parent
50fe557056
commit
cd1fe5eebb
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue