chore: add control flow example

This commit is contained in:
2026-06-01 14:15:10 +02:00
parent 261fd47494
commit f4dc57cb96

View File

@@ -0,0 +1,9 @@
def minimum(x: int, y: int):
if x < y:
return x
else:
return y
a = 15
b = 72
c = minimum(a, b)