added equality and relational operators

This commit is contained in:
cozis
2021-11-03 02:04:38 +00:00
parent c0d788656e
commit 9d600b66be
9 changed files with 285 additions and 6 deletions
+6
View File
@@ -7,5 +7,11 @@ if p:
else
a = 2;
if 'hello2' == 'hello': print('Yup!'); else print('Nop!');
print('\n');
print(a);
print(1 < 1 < 1);
return a;