Posted 12 May 2012 - 03:09 AM
Hello! I'm writting some programs in lua in computercraft. Sometimes, when i'm looking some codes, i see this:
It was taken from the gps program
Could someone explain me WHATTA HELL is this tArgs. I simply don't have idea…
One more little thing:
local tArgs = { ... }
if #tArgs < 1 then
printUsage()
return
end
It was taken from the gps program
Could someone explain me WHATTA HELL is this tArgs. I simply don't have idea…
One more little thing:
if not bOpen then
is the same as:
if bOpen == false then
???