Skip to content

Commit 0e802a1

Browse files
author
david allen
committed
Classic "Hello World!" python app
0 parents  commit 0e802a1

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

HelloWorld.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# imports
2+
3+
4+
# property declarations
5+
6+
7+
# helper functions
8+
9+
10+
# main function that is run at end of file to launch program
11+
def main ():
12+
print("Hello World!")
13+
14+
pass
15+
16+
main()

0 commit comments

Comments
 (0)