Module:If empty: Difference between revisions

From the Croc Wiki, the Croc encyclopedia
Jump to navigationJump to search
Content added Content deleted
(test)
 
(oh, misread doc; thought opposite purpose for template)
Line 5: Line 5:
local i = 0
local i = 0
args[table.getn(args)] = ''
args[table.getn(args)] = ''
while string.len(args[i]) do
while not string.len(args[i]) do
i = i + 1
i = i + 1
end
end