maargdarshak/main.py

7 lines
126 B
Python
Raw Normal View History

2024-10-12 19:29:51 +00:00
class HelloWorld:
def __init__(self):
print("Hello, World!")
2024-10-12 19:26:45 +00:00
2024-10-12 19:29:51 +00:00
if __name__ == "__main__":
hello = HelloWorld()