Börjat lägga till kodexempel

This commit is contained in:
2024-02-03 16:32:45 +01:00
commit dcd905737e
30 changed files with 229 additions and 0 deletions

5
kapitel3/if-ex1.py Normal file
View File

@@ -0,0 +1,5 @@
if 1 < 3:
print ("1 är mindre än 3")
else:
print ("1 är inte mindre än 3")