summaryrefslogtreecommitdiff
path: root/docs/examples/tutorial/pure/cython_declare.py
blob: 50a4ab8aa39d7cfb1a93d0186692e2755be625cb (plain)
1
2
3
4
import cython

x = cython.declare(cython.int)              # cdef int x
y = cython.declare(cython.double, 0.57721)  # cdef double y = 0.57721