Source code for test_project.utils

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


"""This module contains the utilities for my test project."""

answer = 42


[docs]def hello_world(): """Write hello world.""" print('Hello World!')
[docs]def add(x, y): """Add two numbers together. .. note:: This is acutally defined for anything, where the + operator is defined. """ return x + y