We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fb62c9 commit c18d9dfCopy full SHA for c18d9df
1 file changed
src/rda_python_template/hello_world.py
@@ -0,0 +1,13 @@
1
+#
2
+# main function to run hello_world
3
4
+def main():
5
+
6
+ str = "Hello World!"
7
+ print(str)
8
+ return str
9
10
11
+# call main() to start program
12
13
+if __name__ == "__main__": main()
0 commit comments