7 lines
126 B
Python
7 lines
126 B
Python
class HelloWorld:
|
|
def __init__(self):
|
|
print("Hello, World!")
|
|
|
|
if __name__ == "__main__":
|
|
hello = HelloWorld()
|