Code Issues Releases
utils.py
305 bytes | 996dfd4
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
def hello_world():
    """Sample hello world function that returns a greeting."""
    return "Hello from python-utils!"


def add(a: int, b: int) -> int:
    """Add two integers together."""
    return a + b


def multiply(a: int, b: int) -> int:
    """Multiply two integers together."""
    return a * b