Add string comparison tests.

Use computed string to exercise string interning code better.
genexit-inst
Paul Sokolovsky 2014-01-08 22:41:22 +02:00
parent 1143e5e72a
commit d944a66ead
1 changed files with 7 additions and 0 deletions

View File

@ -10,3 +10,10 @@ print('123' + "456")
# iter
print(list('str'))
print('123' + '789' == '123789')
print('a' + 'b' != 'a' + 'b ')
# Not implemented so far
# print('1' + '2' > '2')
# print('1' + '2' < '2')