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


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


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