summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--tests/basics/tests/string1.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/basics/tests/string1.py b/tests/basics/tests/string1.py
index 9d6f21d132..3fecf799be 100644
--- a/tests/basics/tests/string1.py
+++ b/tests/basics/tests/string1.py
@@ -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')