1
Fork 0

Initial commit

This commit is contained in:
Tibo De Peuter 2026-02-24 12:15:05 +01:00
commit e256e5e1ad
20 changed files with 3018 additions and 0 deletions

11
src/helloworld.py Normal file
View file

@ -0,0 +1,11 @@
import math
import datetime
def greet():
"""Prints a hello message with the current date and time."""
current_time = datetime.datetime.now()
print(f"Hello, World! Current date and time: {current_time}")
if __name__ == "__main__":
greet()