This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
Graypup's profile picture

Attempt to compare __le on nil and number

Started by Graypup, 06 March 2014 - 09:07 PM
Graypup #1
Posted 06 March 2014 - 10:07 PM
Attempt to compare __le on nil and number. I am passing the required arguments.


tArgs = {...}
n = tonumber(tArgs[1])

for i=1, i <= n do
  turtle.place()
  turtle.back()
end
sci4me #2
Posted 06 March 2014 - 10:21 PM

for i = 1, n do
Graypup #3
Posted 06 March 2014 - 10:42 PM

for i = 1, n do
Oops, too used to other languages D:
sci4me #4
Posted 07 March 2014 - 04:50 AM

for i = 1, n do
Oops, too used to other languages D:
hehe yeah, i do that a lot too.