Initial commit
This commit is contained in:
commit
e256e5e1ad
20 changed files with 3018 additions and 0 deletions
11
src/helloworld.py
Normal file
11
src/helloworld.py
Normal 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()
|
||||
|
||||
Reference in a new issue