Hello World

This commit is contained in:
Cal Wing 2025-02-14 20:13:04 +01:00
parent 106c0f5b6f
commit fc325da07b

9
a1.py Normal file
View File

@ -0,0 +1,9 @@
# Cal Wing (uqcwing)
# A1 Attempt 1
# 14/02/25
def main():
print("Hello World!")
if __name__ == '__main__':
main()