maargdarshak/main.py
Sandipsinh Rathod ac60c5ef94
hello world
2024-10-12 15:29:51 -04:00

7 lines
126 B
Python

class HelloWorld:
def __init__(self):
print("Hello, World!")
if __name__ == "__main__":
hello = HelloWorld()