Skip to content

Commit 23726a0

Browse files
committed
Add hello world program
1 parent 54eed14 commit 23726a0

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

main.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
def main():
2+
print("Hello World")
3+
4+
5+
if __name__ == "__main__":
6+
main()
7+

0 commit comments

Comments
 (0)