First Push

Setup Push
This commit is contained in:
danielwilczak101
2020-09-17 12:28:32 -04:00
commit d7fc75ba3d
16 changed files with 133 additions and 0 deletions

6
build/lib/helloworld.py Normal file
View File

@ -0,0 +1,6 @@
def say_hello(name=None):
if name is None:
return "Hello, World!"
else:
return f"Hello, {name}!"