sigewinne commited on
Commit
8980b03
·
verified ·
1 Parent(s): 5986d7c

Create helloworld.py

Browse files
Files changed (1) hide show
  1. helloworld.py +7 -0
helloworld.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ def main():
2
+
3
+ print("Hello World")
4
+
5
+ if (__name__ == "__main__"):
6
+
7
+ main()