Skip to content

Commit

Permalink
Update hello_world.py
Browse files Browse the repository at this point in the history
  • Loading branch information
zaihuaji authored Jan 15, 2025
1 parent c18d9df commit cb67fde
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/rda_python_template/hello_world.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
#
def main():

str = "Hello World!"
str = get_string('Hua')
print(str)
return str

def get_string(name):
return name + ": Hello World!"
#
# call main() to start program
#
Expand Down

0 comments on commit cb67fde

Please sign in to comment.