Source code for template_for_python_projects.example.minus

[docs] def minus(a: int, b: int) -> int: """ This function returns the difference of two numbers. Very similar to :func:`template_for_python_projects.example.plus.plus` but returns the difference instead of the sum. :param a: an integer number :param b: another integer number :return: the difference of the two numbers """ return a - b