python # hello.pyx def multiply(x, y): return x * y bash $ cythonize -i hello.pyx python # main.py import hello result = hello.multiply(3, 4) print(result)