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 / cdef_syntax.pyx
Size: Mime:
# mode: compile

# the following are valid syntax constructs and should not produce errors

ctypedef int x;

cdef no_semi():
    cdef int i

cdef with_semi():
    cdef int i;

def use_cdef():
  &no_semi, &with_semi