This commit is contained in:
2026-01-31 10:53:59 +01:00
parent 5b91191c20
commit 3333b8503d
2 changed files with 3 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
def ft_count_harvest_recursive(x=-1):
def ft_count_harvest_recursive(x: int = -1):
if x < 0:
print("Days until harvest:", end=" ")
x = int(input())