Cython has moved to github.

cython

view tests/compile/huss2.pyx @ 724:4e4808271bdf

Bump version number.
author Robert Bradshaw <robertwb@math.washington.edu>
date Thu Jun 12 16:53:51 2008 -0700 (3 years ago)
parents
children 5905f7b15cb2
line source
1 cdef enum Color:
2 red
3 white
4 blue
6 cdef void f():
7 cdef Color e
8 cdef int i
10 i = red
11 i = red + 1
12 i = red | 1
13 e = white
14 i = e
15 i = e + 1