1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-11-09 22:08:58 +01:00
programming-challenges/challenges/hello-world/solutions/python-hello/solution.py

3 lines
51 B
Python
Raw Normal View History

2020-07-05 15:48:51 +02:00
def solution(arg):
2020-12-09 12:42:12 +01:00
return 'Hello ' + arg + '!'