Skip to content
Snippets Groups Projects
core.py 173 B
Newer Older
Xuefeng Ding's avatar
Xuefeng Ding committed
from ._csrc._hello import add, complexf


def div(a: float, b: float) -> float:
Xuefeng Ding's avatar
Xuefeng Ding committed
    return a / b
Xuefeng Ding's avatar
Xuefeng Ding committed
def complex2(a, b: float) -> float:
Xuefeng Ding's avatar
Xuefeng Ding committed
    return complexf(a, b) + add(a, b)