cs50/src6/1/meow1.py

7 lines
75 B
Python

# Demonstrates while loop
i = 0
while i < 3:
print("meow")
i += 1