You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function fromto(f,t,s)
local iter; iter = function(s)
s[1] = s[1] + s[3]
if s[1]<=s[2] then
return s[1]
else
return nil
end
end
return iter, {f-s,t,s}
end
https://github.com/xfbs/PiL3/blob/master/07Iterators/fromtostep.lua
Hey, again : )
your code gives:
but should be:
my code:
https://github.com/xfbs/PiL3/blob/master/07Iterators/fromtostep.lua#L26
min-1
should bemin-step
i guessThe text was updated successfully, but these errors were encountered: