Skip to content
Snippets Groups Projects
core.py 184 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 + 1
Xuefeng Ding's avatar
Xuefeng Ding committed


def complex2(a: float, b: float) -> float:
    return complexf(a, b) + add(a, b)