9 lines
142 B
Python
9 lines
142 B
Python
def greet(name):
|
|
return f"Hello, {name}! You're using chipi."
|
|
|
|
def add(x, y):
|
|
return x + y
|
|
|
|
def reverse_string(s):
|
|
return s[::-1]
|