Files
gauvainboiche 5d62489b37 First commit
2024-12-05 16:04:24 +01:00

9 lines
147 B
Python

# if, else, elif, while
def test:
if 5 == 5:
return "Oui !"
elif 5 != 5:
return "Non !"
else :
return "Hein ?"