"""
A collection of useful functions
"""

__all__ = ['add', 'multiply']


def add(a, b):
    """
    Add two numbers

    Here is an example reference: astropy_
    """
    return a + b


def multiply(c, d):
    """
    Multiply two numbers

    Here is an example reference: astropy_
    """
    return c * d
