modified: script.py
Some checks failed
Pylint / build (3.x) (push) Failing after 6s

This commit is contained in:
2025-02-02 22:32:25 +01:00
parent 9e3511b29a
commit 7d6bb7b22f

View File

@@ -1,2 +1,10 @@
# script.py
print("Hello User!")
"""
script.py - A simple script to greet the user.
"""
def greet_user():
"""Function to print a greeting message."""
print("Hello User!")
if __name__ == "__main__":
greet_user()