Lichen

Annotated tests/operator_syntax.py

792:d70932955645
2017-03-31 Paul Boddie Fixed non-recognition of deferred references in non-module, non-function scopes.
paul@279 1
print 1 == 1                    # True
paul@279 2
print 1 != 1                    # False
paul@279 3
print 1 == "one"                # False
paul@279 4
print 1 != "one"                # True