PiL3
PiL3 copied to clipboard
My solutions to the exercises from the book "Programming in Lua 3" by Roberto Ierusalimschy
Results
3
PiL3 issues
Sort by
recently updated
recently updated
newest added
https://github.com/xfbs/PiL3/blob/master/07Iterators/fromtostep.lua Hey, again : ) your code gives: ``` > for i in fromto(3,7,2) do print(i) end 4 6 ``` but should be: ``` > for i in fromto(3,7,2) do...
5.2
3
What about table.unpack ? : )