Skip to content

Commit cb67fde

Browse files
authored
Update hello_world.py
1 parent c18d9df commit cb67fde

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/rda_python_template/hello_world.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
#
44
def main():
55

6-
str = "Hello World!"
6+
str = get_string('Hua')
77
print(str)
8-
return str
98

9+
def get_string(name):
10+
return name + ": Hello World!"
1011
#
1112
# call main() to start program
1213
#

0 commit comments

Comments
 (0)