JuliaDynamics / ResumableFunctions.jl

C# style generators a.k.a. semi-coroutines for Julia.
Other
160 stars 19 forks source link

type CodeInfo has no field slottypes #24

Closed dmitrypenzar1996 closed 6 years ago

dmitrypenzar1996 commented 6 years ago

@resumable function fib_rf() prev=0 cur=1 while(true) @yield cur prev, cur = (cur, prev+cur) # nice little avoiding a temp here end end

Running this simple chunk of code for Julia 1.0 results in Error: "LoadError: type CodeInfo has no field slottypes"

BenLauwens commented 6 years ago

I have just released a version that is Julia v1.0 compatible. Enjoy!

Ben