templates/python/main.py
2024-01-06 19:34:01 +01:00

6 lines
89 B
Python

def meow(x: int) -> None:
for _ in range(x):
print("meow", end="")
meow(10)