templates/python/main.py

6 lines
89 B
Python
Raw Normal View History

2024-01-06 19:34:01 +01:00
def meow(x: int) -> None:
for _ in range(x):
print("meow", end="")
2023-12-06 20:07:52 +01:00
2024-01-06 19:34:01 +01:00
meow(10)