Source code for furry_octo_train.utils

# -*- coding: utf-8 -*-

"""This module contains the setup command."""

# __all__ = [
#     'hello_world',
#     'add',
# ]


[docs]def hello_world(): """Print hello.""" print("I am a furry octo train!")
[docs]def add(x, y): """Sum x and y. .. note:: This ... """ return x + y