Lichen

tests/operator_syntax.py

300:503985ccf893
2016-12-02 Paul Boddie Added a simple hash function for strings; expanded string and dictionary tests.
     1 print 1 == 1                    # True     2 print 1 != 1                    # False     3 print 1 == "one"                # False     4 print 1 != "one"                # True