Python
# Example of a lambda expression in Python
add = lambda x, y: x + y
result = add(2, 3)
print("Result:", result)  # Output: Result: 5