Started python function layout

Totally not doing this through github.com
This commit is contained in:
Thomas Kwashnak
2022-01-04 12:00:29 -05:00
committed by GitHub
parent 703b410f2e
commit 24313121ca

View File

@@ -1 +1,13 @@
def print_instructions():
print("This is where you will find instructions")
def play_game():
print("Lets play a game")
def main():
if input("Do you want instrunctions?").lower().startswith("y"):
print_instructions()
if __name__ == "__main__":
main()