You define a Python function interface but populate it with a string of C code.
def add(x: int, y: int) -> int: """ // c code int x, y return x + y """
That's...horrifying yet amazing.
You define a Python function interface but populate it with a string of C code.