1st commit

This commit is contained in:
2025-05-20 09:05:07 +02:00
commit 660b9b56e4
9 changed files with 360 additions and 0 deletions

12
hello.py Normal file
View File

@@ -0,0 +1,12 @@
def main():
print("Hello from workflowbumptester!")
print(f"This script has version {get_version()}.")
def get_version():
with open(".version") as f:
return f.read().strip()
if __name__ == "__main__":
main()