Moderators: They make you lose count(Longest thread still alive!)

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord
oh, yea I believe this is also valid lua code (might be wrong though, never used this thing)
local number=1
repeat
number=number+1
until number==8
io.write(tostring(number),"\n") -- fun fact, I just wrote how the print function works using io.write :P
 
io.write(1,0,"\n")

is that better? It doesn't need to concatenate anything and it only needs one function.(Though I could of said io.write(10,"\n" and it probably would be a bit faster but where is the fun in that? :P ))