Skip to content
Snippets Groups Projects
Commit d944a66e authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

Add string comparison tests.

Use computed string to exercise string interning code better.
parent 1143e5e7
Branches
No related tags found
No related merge requests found
...@@ -10,3 +10,10 @@ print('123' + "456") ...@@ -10,3 +10,10 @@ print('123' + "456")
# iter # iter
print(list('str')) print(list('str'))
print('123' + '789' == '123789')
print('a' + 'b' != 'a' + 'b ')
# Not implemented so far
# print('1' + '2' > '2')
# print('1' + '2' < '2')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment