summaryrefslogtreecommitdiff
path: root/docs/examples/tutorial/pure/cython_declare.py
blob: cf6d58bbac05e0793f25293cd78ef1e168f064f7 (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