scanner.go: removed SymTilde from DefaultTranslatios() -> It is not an alias for the SymNot symbol any more

This commit is contained in:
Celestino Amoroso 2024-12-19 15:30:29 +01:00
parent a1ec0cc611
commit de87050188

View File

@ -40,9 +40,9 @@ func DefaultTranslations() map[Symbol]Symbol {
SymKwAnd: SymAnd,
SymDoubleVertBar: SymOr,
SymKwOr: SymOr,
SymTilde: SymNot,
SymKwNot: SymNot,
SymLessGreater: SymNotEqual,
// SymTilde: SymNot,
SymKwNot: SymNot,
SymLessGreater: SymNotEqual,
}
}