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

ctypedef struct Foo:
    int blarg

cdef Foo f():
    blarg = 1 + 2
    cdef Foo foo
    foo.blarg = blarg
    return foo

f()