9 lines
124 B
Python
9 lines
124 B
Python
|
# Cal Wing (uqcwing)
|
||
|
# A1 Attempt 1
|
||
|
# 14/02/25
|
||
|
|
||
|
def main():
|
||
|
print("Hello World!")
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|