Using mypackage#
# Author: Jørgen S. Dokken
#
# SPDX-License-Identifier: MIT
import mypackage
Next we define two numbers, a
and b
a = 1
b = 3
and add them together
c = mypackage.addition(a, b)
We check the result
assert c == a + b
print(c)
4