Files
EasyGA/build/lib/helloworld.py
danielwilczak101 d7fc75ba3d First Push
Setup Push
2020-09-17 12:28:32 -04:00

7 lines
126 B
Python

def say_hello(name=None):
if name is None:
return "Hello, World!"
else:
return f"Hello, {name}!"