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 print_add(a: int, b: int) -> int:
"""Computes and prints a + b"""
c = a + b
print(c)
return c