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