Python
# Example of a function in Python
def greet(name):
    print(f"Hello, {name}!")

greet("Alice")  # Output: Hello, Alice!