Source code for mypackage.functions

# Copyright (C) 2022 Jørgen Schartum Dokken
#
# This file is part of mypackage
# SPDX-License-Identifier:    MIT
__all__ = ["addition", "print_add"]


[docs]def addition(a: int, b: int) -> int: """Computes a+b""" return a + b