8 lines
97 B
Python
8 lines
97 B
Python
# Test Project
|
|
|
|
def hello():
|
|
print("Hello, World\!")
|
|
|
|
if __name__ == "__main__":
|
|
hello()
|