pytangle.pyx 156 B

123456789
  1. # cdef extern from "tangle.h":
  2. # cdef void count_to(int i)
  3. cdef extern from "tangle.h":
  4. void count_to(int i)
  5. def say_hi():
  6. return count_to(5)