cs50/src6/1/meow4.py

13 lines
117 B
Python

# Abstraction
def main():
for i in range(3):
meow()
# Meow once
def meow():
print("meow")
main()