From c18d9df76aa6770a355b862032aace81bca0ae49 Mon Sep 17 00:00:00 2001 From: Zaihua Ji Date: Wed, 15 Jan 2025 11:14:00 -0600 Subject: [PATCH] Create hello_world.py --- src/rda_python_template/hello_world.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/rda_python_template/hello_world.py diff --git a/src/rda_python_template/hello_world.py b/src/rda_python_template/hello_world.py new file mode 100644 index 0000000..21d5d80 --- /dev/null +++ b/src/rda_python_template/hello_world.py @@ -0,0 +1,13 @@ +# +# main function to run hello_world +# +def main(): + + str = "Hello World!" + print(str) + return str + +# +# call main() to start program +# +if __name__ == "__main__": main()