fixed bug and added a little documentation

This commit is contained in:
Francesco Cozzuto
2021-11-05 00:10:45 +01:00
parent b224f57361
commit 9458632b27
8 changed files with 298 additions and 20 deletions
+19 -1
View File
@@ -1,5 +1,23 @@
if 'hello' == 'hello':
a = 'Francesco';
b = 'Gennaro';
print('Are ', a, ' and ', b, ' the same name?\n');
if a == b:
print('Yup!\n');
else
print('Nop!\n');
# Now they are!
a = 'Francesco';
b = 'Francesco';
print('Are ', a, ' and ', b, ' the same name?\n');
if a == b:
print('Yup!\n');
else
print('Nop!\n');