Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Cython / tests / compile / huss2.pyx
Size: Mime:
# mode: compile

cdef enum Color:
    red
    white
    blue

cdef void f():
    cdef Color e
    cdef int i

    i = red
    i = red + 1
    i = red | 1
    e = white
    i = e
    i = e + 1

f()