# /// script_name
# requires-python = ">=X.XX" TODO: Update this to the minimum Python version you want to support
# dependencies = [
#   TODO: Add any dependencies your script requires
# ]
# ///

# TODO: Update the main function to your needs or remove it.


def main() -> None:
    print("Start coding in Python today!")


if __name__ == "__main__":
    main()
