PiL3 icon indicating copy to clipboard operation
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...

What about table.unpack ? : )