Skip to content

Commit

Permalink
Create hello_world.py
Browse files Browse the repository at this point in the history
  • Loading branch information
zaihuaji authored Jan 15, 2025
1 parent 9fb62c9 commit c18d9df
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/rda_python_template/hello_world.py
Original file line number Diff line number Diff line change
@@ -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()

0 comments on commit c18d9df

Please sign in to comment.