This commit is contained in:
ducoterra
2020-11-09 21:12:58 -05:00
parent f2b35db671
commit 09b4bc8f5b
25 changed files with 393 additions and 1 deletions

16
my_program.py Normal file
View File

@@ -0,0 +1,16 @@
def print_hello():
print('hello, world!')
def print_goodbye():
print('goodbye!')
def middle_stuff():
x = 1
y = 2
print(x + y)
my_name = "Reese"
print(my_name)
print_hello()
middle_stuff()
print_goodbye()