diff --git a/build/lib/helloworld.py b/build/lib/helloworld.py deleted file mode 100644 index 78738a0..0000000 --- a/build/lib/helloworld.py +++ /dev/null @@ -1,6 +0,0 @@ -def say_hello(name=None): - if name is None: - return "Hello, World!" - else: - return f"Hello, {name}!" -