Lichen

Change of tests/operator_syntax.py

279:22aea7bc1acd
tests/operator_syntax.py
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/tests/operator_syntax.py	Tue Nov 29 17:29:42 2016 +0100
     1.3 @@ -0,0 +1,4 @@
     1.4 +print 1 == 1                    # True
     1.5 +print 1 != 1                    # False
     1.6 +print 1 == "one"                # False
     1.7 +print 1 != "one"                # True