Lichen

tests/operator_syntax.py

292:436d7832ca66
2016-12-01 Paul Boddie Introduced the itemaccess class as the base of sequence types and strings. Added support for obtaining substrings from strings. Added tests of string operations. Removed the superfluous _tuple function from the sequence module.
     1 print 1 == 1                    # True     2 print 1 != 1                    # False     3 print 1 == "one"                # False     4 print 1 != "one"                # True