hello world

This commit is contained in:
Sandipsinh Rathod 2024-10-12 15:29:51 -04:00
parent 24c5f5919e
commit ac60c5ef94
No known key found for this signature in database

@ -1 +1,6 @@
class HelloWorld:
def __init__(self):
print("Hello, World!")
if __name__ == "__main__":
hello = HelloWorld()