addded hello world
This commit is contained in:
parent
56fba33238
commit
6c37d3ddf3
|
@ -7,3 +7,7 @@ def add(a, b):
|
|||
def multiply(a, b):
|
||||
"""Multiplies two numbers."""
|
||||
return a * b
|
||||
|
||||
def greet(name="World"):
|
||||
"""Greets a person."""
|
||||
return f"Hello, {name}!"
|
Loading…
Reference in New Issue