mirror of
https://github.com/micropython/micropython.git
synced 2026-01-07 04:30:24 +01:00
Add string comparison tests.
Use computed string to exercise string interning code better.
This commit is contained in:
@@ -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')
|
||||
|
||||
Reference in New Issue
Block a user