Skip to content
Snippets Groups Projects
_hello.pyi 296 B
Newer Older
Xuefeng Ding's avatar
Xuefeng Ding committed
"""
pybind11 example plugin
"""

from __future__ import annotations

__all__ = ["add", "complexf"]

def add(arg0: float, arg1: float) -> float:
    """
    A function which adds two numbers
    """

def complexf(arg0: float, arg1: float) -> float:
    """
    complex(a,b) = add(a,b) + 2
    """