Skip to content

Commit 4c38d61

Browse files
committed
feat: Add Hello World program in hello_world.py
1 parent ccf2770 commit 4c38d61

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

hello_world.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
def main():
2+
print("Hello, World!")
3+
4+
if __name__ == "__main__":
5+
main()

0 commit comments

Comments
 (0)